Skip to content

v1.0.6 Release

Compare
Choose a tag to compare
@benlau benlau released this 09 Feb 17:52
· 35 commits to master since this release

Changes

  • Q.promise(function(fulfill,reject) {}) is supported

Example

        var promise = Q.promise(function(fulfill, reject) {
            Q.setTimeout(fulfill, 1000);
        });