q-lazy

1.0.2 • Public • Published

Q.lazy()

Promises/A+ logo

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.

Readme

Keywords

none

Package Sidebar

Install

npm i q-lazy

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • nailgun