Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / _addMapEntry.js
1 /**
2  * Adds the key-value `pair` to `map`.
3  *
4  * @private
5  * @param {Object} map The map to modify.
6  * @param {Array} pair The key-value pair to add.
7  * @returns {Object} Returns `map`.
8  */
9 function addMapEntry(map, pair) {
10   map.set(pair[0], pair[1]);
11   return map;
12 }
13
14 module.exports = addMapEntry;