nsurejs
v0.1.5
Published
nsurejs is a lightweight promise library with the ability to pass multiple arguments to the followups
Downloads
4
Readme
nsurejs
var deferred = NSure.defer();
deferred.promise.then(function(arg1,arg2,arg3){
/*
* your code goes here
*/
});
setTimeout(function(){
deferred.resolve(1,123,32);
},1);