Skip to content

Instantly share code, notes, and snippets.

@manojjsm
Forked from fat/gist:859445
Created November 26, 2015 14:10
Show Gist options
  • Save manojjsm/dfc320a17c68b4541a33 to your computer and use it in GitHub Desktop.
Save manojjsm/dfc320a17c68b4541a33 to your computer and use it in GitHub Desktop.
make this better.
function __tailingFn () {
for (var i = arguments.length; i--;) {
if (typeof arguments[i] == 'function') {
var fn = arguments[i];
arguments[i] = undefined;
return fn;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment