saven
Version:
10 lines (8 loc) • 320 B
JavaScript
var global = typeof window !== 'undefined' &&
window.Math === Math ? window : typeof self !== 'undefined' && self.Math === Math ? self : this
if (!global.Promise) {
global.Promise = require('promise-polyfill')
}
if (!global.regeneratorRuntime) {
global.regeneratorRuntime = require('regenerator-runtime/runtime')
}