Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Created July 5, 2013 15:51
Show Gist options
  • Save imbcmdth/5935440 to your computer and use it in GitHub Desktop.
Save imbcmdth/5935440 to your computer and use it in GitHub Desktop.
var slice = Array.prototype.slice;
var call = Function.prototype.call;
var toArray = function () { return call.apply(slice, arguments); }
// Usage:
toArray(arguments); //=> make an array from all arguments
toArray(arguments, 1, 3); //=> make an array from arguments[1] to arguments[2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment