José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | hace 4 años | |
---|---|---|
.. | ||
index.js | hace 4 años | |
license | hace 4 años | |
package.json | hace 4 años | |
readme.md | hace 4 años |
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