UNPKG

@n3okill/utils

Version:
13 lines 285 B
/** * Transforms Map into Object * @param map Map to transform * @returns The object resultant from the Map */ export function fromMap(map) { const obj = {}; for (const [key, val] of map) { obj[key] = val; } return obj; } //# sourceMappingURL=fromMap.js.map