1.0.0 • Published 9 years ago
map-to-object v1.0.0
map-to-object
Requires Node 4.x or newer
npm install map-to-object
Converts Map to plain object.
Warning: Can lose data. Associative objects don't know the difference between 1
and '1'
, among other problems.
import mapToObject from 'map-to-object'
const A = new Map([
[1, 'one'],
[2, 'two'],
[3, 'three']
])
const B = mapToObject(A)
/*
B is now
{
'1': 'one',
'2': 'two',
'3': 'three'
}
*/