Last updated 3 years ago
Was this helpful?
ponyfill
Module exports global Promise object (if available) or Promise polyfill.
- Promisify a callback-style function
MIT ©
$ npm install --save pinkie-promise
var Promise = require('pinkie-promise'); new Promise(function (resolve) { resolve('unicorns'); }); //=> Promise { 'unicorns' }
pinkie