Skip to content

Instantly share code, notes, and snippets.

@imWildCat
Created May 11, 2014 11:22
Show Gist options
  • Save imWildCat/63cd9c17697f745b444d to your computer and use it in GitHub Desktop.
Save imWildCat/63cd9c17697f745b444d to your computer and use it in GitHub Desktop.
require('dotq');
function demoCallback(cb){
setImmediate(cb('test'));
}
var test = demoCallback.promise().then(function(str){
return str;
});
console.log(test);
/* output:
/usr/local/bin/node test.js
[object Object]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment