├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── polyfill.d.ts ├── proposal.html └── publi.sh /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-flatMap/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | index.html 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-flatMap/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-flatMap/HEAD/package.json -------------------------------------------------------------------------------- /polyfill.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-flatMap/HEAD/polyfill.d.ts -------------------------------------------------------------------------------- /proposal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-flatMap/HEAD/proposal.html -------------------------------------------------------------------------------- /publi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-flatMap/HEAD/publi.sh --------------------------------------------------------------------------------