mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
300 B
15 lines
300 B
9 years ago
|
/**
|
||
|
* Adds the key-value `pair` to `map`.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {Object} map The map to modify.
|
||
|
* @param {Array} pair The key-value pair to add.
|
||
|
* @returns {Object} Returns `map`.
|
||
|
*/
|
||
|
function addMapEntry(map, pair) {
|
||
|
map.set(pair[0], pair[1]);
|
||
|
return map;
|
||
|
}
|
||
|
|
||
|
module.exports = addMapEntry;
|