├── .gitattributes ├── .gitignore ├── .npmrc ├── README.md ├── package.json ├── src ├── URI.ts └── spec-url.d.ts ├── test ├── _setup.js ├── _test.js └── basic.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts=true 2 | workspace-concurrency = 1 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/package.json -------------------------------------------------------------------------------- /src/URI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/src/URI.ts -------------------------------------------------------------------------------- /src/spec-url.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/src/spec-url.d.ts -------------------------------------------------------------------------------- /test/_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/test/_setup.js -------------------------------------------------------------------------------- /test/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/test/_test.js -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/test/basic.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/uri/HEAD/tsconfig.json --------------------------------------------------------------------------------