Skip to content

Instantly share code, notes, and snippets.

@poying
Created November 15, 2014 03:50
Show Gist options
  • Save poying/a832a62334c38d5ac9ef to your computer and use it in GitHub Desktop.
Save poying/a832a62334c38d5ac9ef to your computer and use it in GitHub Desktop.
var myModule = module.exports;
myModule.callbackMethod = supportPromise(function (arg1, arg2, cb) {
// 作一些事情
asyncFunction(function () {
// 一些異步操作
asyncFunction(function () {
// 執行完成
cb();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment