convert-to-map

1.0.0 • Public • Published

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.

Package Sidebar

Install

npm i convert-to-map

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

3.89 kB

Total Files

6

Last publish

Collaborators

  • kpajtasev