Last active
August 29, 2015 14:01
-
-
Save leonguyen/6d5d67615ef9728c8fde to your computer and use it in GitHub Desktop.
Step
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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