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