-
-
Save manojjsm/dfc320a17c68b4541a33 to your computer and use it in GitHub Desktop.
Revisions
-
fat revised this gist
Mar 7, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ function __tailingFn () { for (var i = arguments.length; i--;) { if (typeof arguments[i] == 'function') { var fn = arguments[i]; arguments[i] = undefined; return fn; -
fat revised this gist
Mar 7, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ function __tailingFn () { for (var i = arguments.length; i--;) { if (typeOf(arguments[i]) == 'function') { var fn = arguments[i]; arguments[i] = undefined; return fn; } } -
fat created this gist
Mar 7, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ function __tailingFn () { for (var i = arguments.length; i--;) { if (typeOf(arguments[i]) == 'function') { var fn = arguments[i]; delete arguments[i]; return fn; } } }