Skip to content

Instantly share code, notes, and snippets.

@oslego
Created January 4, 2012 12: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 oslego/1559881 to your computer and use it in GitHub Desktop.
Save oslego/1559881 to your computer and use it in GitHub Desktop.
Convert object to array
// idea from https://github.com/bartaz/impress.js
var arrayify = function ( a ) {
return Array.prototype.slice.call( a );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment