├── .github └── workflows │ ├── build.yml │ └── deploy.yaml ├── .gitignore ├── LICENSE ├── README.md ├── details.md ├── minimal-core.md ├── name-bikeshedding.md ├── other-languages.md ├── package.json ├── single-vs-multiple.md └── spec └── index.html /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/README.md -------------------------------------------------------------------------------- /details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/details.md -------------------------------------------------------------------------------- /minimal-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/minimal-core.md -------------------------------------------------------------------------------- /name-bikeshedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/name-bikeshedding.md -------------------------------------------------------------------------------- /other-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/other-languages.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/package.json -------------------------------------------------------------------------------- /single-vs-multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/single-vs-multiple.md -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-set-methods/HEAD/spec/index.html --------------------------------------------------------------------------------