├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── destructuring.md ├── double-ended-helper.js ├── index.html ├── iterator-helpers.md ├── package.json ├── spec.emu └── why-deiter.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/README.md -------------------------------------------------------------------------------- /destructuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/destructuring.md -------------------------------------------------------------------------------- /double-ended-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/double-ended-helper.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/index.html -------------------------------------------------------------------------------- /iterator-helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/iterator-helpers.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/package.json -------------------------------------------------------------------------------- /spec.emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/spec.emu -------------------------------------------------------------------------------- /why-deiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-deiter/HEAD/why-deiter.md --------------------------------------------------------------------------------