Last active
January 3, 2016 13:39
-
-
Save zythum/8470938 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
sun = (a, b...)-> | |
where_is_my_func = 'your are not here' | |
unless b.length then a else b[0] += a; arguments.callee.apply @, b | |
where_is_my_func = -> 'I am here' | |
sun 1,2,3,4,5,6,7,8,9 | |
console.log where_is_my_func | |
################################### | |
where_is_my_func = -> 'I am here' | |
sun = (a, b...)-> | |
where_is_my_func = 'your are not here' | |
unless b.length then a else b[0] += a; arguments.callee.apply @, b | |
sun 1,2,3,4,5,6,7,8,9 | |
console.log where_is_my_func |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment