gitextract_qae3wprk/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── polyglot-utils/ │ ├── .gitignore │ ├── README.md │ ├── go/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── preact_iso_url_pattern.go │ │ └── preact_iso_url_pattern_test.go │ ├── php/ │ │ ├── README.md │ │ ├── preact-iso-url-pattern.php │ │ └── test_preact_iso_url_pattern.php │ ├── python/ │ │ ├── README.md │ │ ├── preact_iso_url_pattern.py │ │ └── test_preact_iso_url_pattern.py │ ├── ruby/ │ │ ├── README.md │ │ ├── preact-iso-url-pattern.rb │ │ └── test_preact_iso_url_pattern.rb │ └── run_tests.sh ├── src/ │ ├── hydrate.d.ts │ ├── hydrate.js │ ├── index.d.ts │ ├── index.js │ ├── internal.d.ts │ ├── lazy.d.ts │ ├── lazy.js │ ├── prerender.d.ts │ ├── prerender.js │ ├── router-navigation-api.d.ts │ ├── router-navigation-api.js │ ├── router.d.ts │ └── router.js ├── test/ │ ├── lazy.test.js │ ├── node/ │ │ ├── location-stub.test.js │ │ ├── pattern-match.types.ts │ │ ├── prerender.test.js │ │ └── router-match.test.js │ ├── router-navigation-api.test.js │ ├── router.test.js │ └── setup.js └── web-test-runner.config.js