Initial commit
[yaffs-website] / node_modules / sass-graph / node_modules / lodash / _cloneMap.js
1 var addMapEntry = require('./_addMapEntry'),
2     arrayReduce = require('./_arrayReduce'),
3     mapToArray = require('./_mapToArray');
4
5 /** Used to compose bitmasks for cloning. */
6 var CLONE_DEEP_FLAG = 1;
7
8 /**
9  * Creates a clone of `map`.
10  *
11  * @private
12  * @param {Object} map The map to clone.
13  * @param {Function} cloneFunc The function to clone values.
14  * @param {boolean} [isDeep] Specify a deep clone.
15  * @returns {Object} Returns the cloned map.
16  */
17 function cloneMap(map, isDeep, cloneFunc) {
18   var array = isDeep ? cloneFunc(mapToArray(map), CLONE_DEEP_FLAG) : mapToArray(map);
19   return arrayReduce(array, addMapEntry, new map.constructor);
20 }
21
22 module.exports = cloneMap;