|
||||
---|---|---|---|---|
.. | ||||
index.js | 11e3a9652a | 7 years ago | ||
license | 11e3a9652a | 7 years ago | ||
package.json | 11e3a9652a | 7 years ago | ||
readme.md | 11e3a9652a | 7 years ago |
ES2015 Promise ponyfill
Module exports global Promise object (if available) or pinkie
Promise polyfill.
$ npm install --save pinkie-promise
var Promise = require('pinkie-promise');
new Promise(function (resolve) { resolve('unicorns'); });
//=> Promise { 'unicorns' }
MIT © Vsevolod Strukchinsky