Skip to content

Instantly share code, notes, and snippets.

@ooflorent
Last active August 29, 2015 14:16
Show Gist options
  • Save ooflorent/c58c9a0f08923973a5e3 to your computer and use it in GitHub Desktop.
Save ooflorent/c58c9a0f08923973a5e3 to your computer and use it in GitHub Desktop.

Usage

var FastMap = require('./fast')
var someMap = FastMap()
function map() {
this.x = 0
delete this.x
}
module.exports = function FastMap() {
var self = new map()
function ForceEfficientMap() {}
ForceEfficientMap.prototype = self
new ForceEfficientMap()
return self
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment