Revisions

gist: 176710 Download_button fork
public
Public Clone URL: git://gist.github.com/176710.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
Object.prototype.map = function(fun) {
    var ret = {};
    for ( i in this) {
      ret[i]=fun(this[i]);
    }
    return ret;
};