├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── compressed-size.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── src ├── constants.js ├── format.js ├── index.js ├── index.test.js ├── parse.js ├── resolve.js └── url.js ├── third_party ├── format.js ├── test_cases.js └── url.d.ts └── yarn.lock /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/compressed-size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/.github/workflows/compressed-size.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | .vscode 5 | .idea 6 | coverage 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/package.json -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/format.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/parse.js -------------------------------------------------------------------------------- /src/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/resolve.js -------------------------------------------------------------------------------- /src/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/src/url.js -------------------------------------------------------------------------------- /third_party/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/third_party/format.js -------------------------------------------------------------------------------- /third_party/test_cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/third_party/test_cases.js -------------------------------------------------------------------------------- /third_party/url.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/third_party/url.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/native-url/HEAD/yarn.lock --------------------------------------------------------------------------------