@nathanfaucett/map_polyfill

Map polyfill for the browser and node.js


Keywords
map, map.js, map_polyfill, map_polyfill.js
License
MIT
Install
npm install @nathanfaucett/map_polyfill@0.0.2

Documentation

Map

Map for the browser and node.js

var Map = require("@nathanfaucett/map_polyfill");


var a = new Map(),
    key = {};

a.set(key, "value");
a.get(key) === "value";
a.remove(key);