Skip to content

Instantly share code, notes, and snippets.

@evilpie
Created July 23, 2010 17:13
Show Gist options
  • Save evilpie/487738 to your computer and use it in GitHub Desktop.
Save evilpie/487738 to your computer and use it in GitHub Desktop.
x: (test...) ->
alert(test)
var x;
var __slice = Array.prototype.slice;
x= function() {
var test;
var _a = arguments.length, _b = _a >= 1;
test = __slice.call(arguments, 0, _a - 0);
return alert(test);
};
var x;
var __slice = Array.prototype.slice;
x = function() {
var test = __slice.call(arguments);
return alert(test);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment