1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-04-16 11:28:18 +00:00
MatteZ02 5eb0264906 fix
2019-05-30 12:06:47 +03:00
..
fix
2019-05-30 12:06:47 +03:00
fix
2019-05-30 12:06:47 +03:00
fix
2019-05-30 12:06:47 +03:00
fix
2019-05-30 12:06:47 +03:00

pinkie-promise Build Status

ES2015 Promise ponyfill

Module exports global Promise object (if available) or pinkie Promise polyfill.

Install

$ npm install --save pinkie-promise

Usage

var Promise = require('pinkie-promise');

new Promise(function (resolve) { resolve('unicorns'); });
//=> Promise { 'unicorns' }
  • pify - Promisify a callback-style function

License

MIT © Vsevolod Strukchinsky