├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE.md ├── README.md ├── package.json └── spec.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | out 4 | dist 5 | npm-debug.log 6 | deploy_key 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/package.json -------------------------------------------------------------------------------- /spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-policy-map-set/HEAD/spec.html --------------------------------------------------------------------------------