1.2.0 • Published 8 years ago

x-promise v1.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

x-promise

The library extends the functionality of native promises It's not polyfill!ES5 compatible

Installation

npm install x-promise

Using

In node/browserify/webpack:

require('x-promise')

No-conflict version, for use in other libraries

const XPromise = require('x-promise/no-conflict')();
//or with any polyfill
const XMyPromise = require('x-promise/no-conflict')(MyPromise);

In browser (without module system): copy x-promise.min.js to your public directory

<!-- optional, for old browsers -->
<script src="//cdn.polyfill.io/v2/polyfill.min.js"></script>

<script src="/path/to/x-promise.min.js"></script>

Added functionality

1.2.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago