Skip to content

Instantly share code, notes, and snippets.

@aboekhoff
Created January 10, 2010 21:46
Show Gist options
  • Save aboekhoff/273796 to your computer and use it in GitHub Desktop.
Save aboekhoff/273796 to your computer and use it in GitHub Desktop.
var jury;
jury || (jury = {});
if(!jury.destro)jury.destro = {};
(function() {
jury.destro.foo = function(b, a) {
if(arguments.length !== 2)throw"required arity is 2";var h, c;
c = b["that-thingy"] || "bar";
var d;
d = b["this-thingy"] || "foo";
var e;
e = a[0];
var f;
f = a[1];
var g;
g = a.slice(2);
alert(d);
alert(c);
alert(e);
alert(f);
return h = alert(g)
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment