Skip to content

Instantly share code, notes, and snippets.

@tracend
Created January 15, 2014 04:45
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 tracend/8430911 to your computer and use it in GitHub Desktop.
Save tracend/8430911 to your computer and use it in GitHub Desktop.
_.toArray() #underscore #mixin #cc
_.mixin({
// - Takes an array-like object and turns it into a real Array
// to make all the Array.prototype goodness available.
toArray : function ( a ) {
return [].slice.call( a );
// alternatively:
//Array.prototype.slice.call( a );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment