convert-to-map
v1.0.0
Published
Converter from JavaScript Object to JavaScript Map
Downloads
9
Maintainers
Readme
Object to Map converter
Description
A simple converter that deep converts your JavaScript Object into Map. That means that if any property anywhere in your object is also an object, it will be also converted into map.
Reasons why using Map is better than using Objects can be found in this Medium post.
Usage
const convertToMap = require("convert-to-map");
const val = {...}
const asMap = convertToMap(val);
Note:
If you pass non-object value, function throws an error.