package.register-shim.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of any-promise Show documentation
Show all versions of any-promise Show documentation
Resolve any installed ES6 compatible promise
"use strict"
var registered = {
Promise: window.Promise,
implementation: 'window.Promise'
}
/**
* any-promise in browser is always global
* polyfill as necessary
*/
module.exports = register
function register(){
return registered
}