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