0.0.1 • Published 8 years ago

superlazypromise v0.0.1

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

superlazypromise

Promise made lazy !

Installation

Then install it via npm:

$ npm install --save superlazypromise

Or via bower:

$ bower install --save superlazypromise

Example Usage

const LazyPromise = require('superlazypromise').LazyPromise;

let promise = new LazyPromise((resolve, reject) => {
    // stuff
});
promise.then(/* fn */); // <- promise executed here

License

ISC License. See the LICENSE file.