├── .eslintrc ├── .github └── workflows │ ├── node-aught.yml │ ├── node-native.yml │ ├── node-pretest.yml │ ├── node-promise-shimmed.yml │ ├── node-tens.yml │ ├── rebase.yml │ └── require-allow-edits.yml ├── .gitignore ├── .npmrc ├── .nycrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── auto.js ├── implementation.js ├── index.js ├── package.json ├── polyfill.js ├── requirePromise.js ├── shim.js └── test ├── .eslintrc ├── builtin.js ├── implementation.js ├── index.js ├── native.js ├── promise-shimmed.js ├── shimmed.js └── tests.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/node-aught.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/node-aught.yml -------------------------------------------------------------------------------- /.github/workflows/node-native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/node-native.yml -------------------------------------------------------------------------------- /.github/workflows/node-pretest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/node-pretest.yml -------------------------------------------------------------------------------- /.github/workflows/node-promise-shimmed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/node-promise-shimmed.yml -------------------------------------------------------------------------------- /.github/workflows/node-tens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/node-tens.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/require-allow-edits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.github/workflows/require-allow-edits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | allow-same-version=true 3 | message=v%s 4 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/.nycrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/README.md -------------------------------------------------------------------------------- /auto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | require('./shim')(); 4 | -------------------------------------------------------------------------------- /implementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/implementation.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/package.json -------------------------------------------------------------------------------- /polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/polyfill.js -------------------------------------------------------------------------------- /requirePromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/requirePromise.js -------------------------------------------------------------------------------- /shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/shim.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/builtin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/builtin.js -------------------------------------------------------------------------------- /test/implementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/implementation.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/index.js -------------------------------------------------------------------------------- /test/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/native.js -------------------------------------------------------------------------------- /test/promise-shimmed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/promise-shimmed.js -------------------------------------------------------------------------------- /test/shimmed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/shimmed.js -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-shims/Promise.allSettled/HEAD/test/tests.js --------------------------------------------------------------------------------