You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es6-promise.js 193B

1234567
  1. import Promise from './es6-promise/promise';
  2. import polyfill from './es6-promise/polyfill';
  3. // Strange compat..
  4. Promise.polyfill = polyfill;
  5. Promise.Promise = Promise;
  6. export default Promise;