Created
May 27, 2015 00:53
-
-
Save dbalatero/73a7f74d5a9da51e1590 to your computer and use it in GitHub Desktop.
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
| var N = { | |
| sync: function (callback) { | |
| callback(); | |
| return this; | |
| } | |
| } | |
| N | |
| .sync(function () { | |
| console.log("hello there"); | |
| }) | |
| .sync(function () { | |
| console.log("this is amazing, we got to the second function"); | |
| }); |
What license is this under? Need to know because I am using this in a multi-billion dollar project
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
๐ ๐