source: frontend/node_modules/promise/polyfill.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 231 bytes
Line 
1// not "use strict" so we can declare global "Promise"
2
3var asap = require('asap');
4
5if (typeof Promise === 'undefined') {
6 Promise = require('./lib/core.js')
7 require('./lib/es6-extensions.js')
8}
9
10require('./polyfill-done.js');
Note: See TracBrowser for help on using the repository browser.