├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── lib ├── mime-type-parameters.js ├── mime-type.js ├── parser.js ├── serializer.js └── utils.js ├── package.json ├── scripts ├── .eslintrc.json └── get-latest-platform-tests.js └── test ├── api.js ├── web-platform-tests └── .gitkeep └── web-platform.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /coverage/** 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # lint requires lf line endings 2 | *.js text eol=lf 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/README.md -------------------------------------------------------------------------------- /lib/mime-type-parameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/lib/mime-type-parameters.js -------------------------------------------------------------------------------- /lib/mime-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/lib/mime-type.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/lib/serializer.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/scripts/.eslintrc.json -------------------------------------------------------------------------------- /scripts/get-latest-platform-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/scripts/get-latest-platform-tests.js -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/test/api.js -------------------------------------------------------------------------------- /test/web-platform-tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/web-platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdom/whatwg-mimetype/HEAD/test/web-platform.js --------------------------------------------------------------------------------