├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── index.html ├── package.json ├── spec.emu └── test ├── adapter.js ├── promise.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/package.json -------------------------------------------------------------------------------- /spec.emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/spec.emu -------------------------------------------------------------------------------- /test/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/test/adapter.js -------------------------------------------------------------------------------- /test/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/test/promise.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-promise-try/HEAD/test/test.js --------------------------------------------------------------------------------