Skip to content

Instantly share code, notes, and snippets.

@jdalton
Created September 25, 2014 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdalton/0db8237fd1641b5b34d8 to your computer and use it in GitHub Desktop.
Save jdalton/0db8237fd1641b5b34d8 to your computer and use it in GitHub Desktop.
/* INLINED CODE */
function doSomething(x, y) {
return o2.offset + x + y;
}
/* INLINED CODE */
function doSomething() {
// Essentially inlined like
// this without creating a
// real arguments object.
return o2.offset + arguments[0] + arguments[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment