Merge pull request #8320 from webpack/refactor/objectToMap

Simplify objectToMap
This commit is contained in:
Tobias Koppers 2018-11-02 12:25:14 +01:00 committed by GitHub
commit c828bfa5c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 11 deletions

View File

@ -5,18 +5,11 @@
"use strict";
/**
* convert an object into its 2D array equivalent to be turned
* into an ES6 map
* Convert an object into an ES6 map
*
* @param {object} obj - any object type that works with Object.keys()
* @returns {Map<TODO, TODO>} an ES6 Map of KV pairs
* @param {object} obj - any object type that works with Object.entries()
* @returns {Map<string, any>} an ES6 Map of KV pairs
*/
module.exports = function objectToMap(obj) {
return new Map(
Object.keys(obj).map(key => {
/** @type {[string, string]} */
const pair = [key, obj[key]];
return pair;
})
);
return new Map(Object.entries(obj));
};