Sha256: 8ce104fc991cecc7d6c382762034cb3ad6c1dc78a517ef390a47f0f975c5b1aa
Contents?: true
Size: 716 Bytes
Versions: 64
Compression:
Stored size: 716 Bytes
Contents
# pinkie-promise [](https://travis-ci.org/floatdrop/pinkie-promise) > [ES6 Promise](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects) ponyfill > > Ponyfill: A polyfill that doesn't overwrite the native method Module exports global Promise object (if available) or [`pinkie`](http://github.com/floatdrop/pinkie) Promise polyfill. ## Install ``` $ npm install --save pinkie-promise ``` ## Usage ```js var Promise = require('pinkie-promise'); new Promise(function (resolve) { resolve('unicorns'); }); //=> Promise { 'unicorns' } ``` ## License MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop)
Version data entries
64 entries across 64 versions & 2 rubygems