0.0.1-preview.2 • Published 8 years ago
mapmgr v0.0.1-preview.2
State
- Version: <1.x.x
- Stability: Preview
- Rank: 0/5
Install
npm install mapmgr
Example
const { Map2Obj, Obj2Map } = require('mapmgr');
const myMap = new Map().set('x', 1);
console.log(Map2Obj(myMap)) // {x:1};
const myObj = { x : 4 };
console.log(Obj2Map(myObj)) // Map => { x : 1 }
License
ISC