├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.d.cts ├── index.d.ts ├── index.js ├── package.json └── rollup.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .tern-* 3 | /index.cjs 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | rollup.config.js 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/README.md -------------------------------------------------------------------------------- /index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/index.d.cts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnh/w3c-keyname/HEAD/rollup.config.js --------------------------------------------------------------------------------