1.0.2 • Published 10 years ago

q-lazy v1.0.2

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

Q.lazy()

Resolves promises idly.

Build Status NPM version

npm install q-lazy

About

It's a simple plugin for Q allowing you to create lazy promises. Such promises start to resolve only after calling .then() on them.

Usage

var Q = require('q');
require('q-lazy'); // extends Q

function heavyFunc () {
    // ...
    return ret; // the return value can be a promise or a plain value
}

var promise = Q.lazy(heavyFunc); // doesn't execute heavyFunc

promise.then(function (ret) {    // executes heavyFunc
    // use ret
});

For specification take a look at provided testsuite. It's short.