aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash/_cloneMap.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash/_cloneMap.js')
-rw-r--r--node_modules/lodash/_cloneMap.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/node_modules/lodash/_cloneMap.js b/node_modules/lodash/_cloneMap.js
new file mode 100644
index 000000000..b51983d24
--- /dev/null
+++ b/node_modules/lodash/_cloneMap.js
@@ -0,0 +1,19 @@
+var addMapEntry = require('./_addMapEntry'),
+ arrayReduce = require('./_arrayReduce'),
+ mapToArray = require('./_mapToArray');
+
+/**
+ * Creates a clone of `map`.
+ *
+ * @private
+ * @param {Object} map The map to clone.
+ * @param {Function} cloneFunc The function to clone values.
+ * @param {boolean} [isDeep] Specify a deep clone.
+ * @returns {Object} Returns the cloned map.
+ */
+function cloneMap(map, isDeep, cloneFunc) {
+ var array = isDeep ? cloneFunc(mapToArray(map), true) : mapToArray(map);
+ return arrayReduce(array, addMapEntry, new map.constructor);
+}
+
+module.exports = cloneMap;