Skip to content

Instantly share code, notes, and snippets.

@JamesRyanATX
Created June 14, 2010 18:52
Show Gist options
  • Save JamesRyanATX/438099 to your computer and use it in GitHub Desktop.
Save JamesRyanATX/438099 to your computer and use it in GitHub Desktop.
Array.prototype.hashify = Array.prototype.hashify || function(transform) {
var h = { };
for (var i = 0; i < this.length; i += 1) h[transform(i)] = i;
return h;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment