Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save leonguyen/6d5d67615ef9728c8fde to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/6d5d67615ef9728c8fde to your computer and use it in GitHub Desktop.
Step
Step(
function A() {
//Code here
},
function B(e, r) {
//Code here
}
);
Step(
function readSelf() {
fs.readFile(__filename, this);
},//readSelf
function capitalize(er, text) {
if (er) throw er;
return text.toUpperCase();
},//capitalize
function showIt(er, newText) {
if (er) throw er;
console.log(newText);
}//showIt
);//Step
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment