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