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.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/node_modules/lodash/_cloneMap.js b/node_modules/lodash/_cloneMap.js
deleted file mode 100644
index 334b73e98..000000000
--- a/node_modules/lodash/_cloneMap.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var addMapEntry = require('./_addMapEntry'),
- arrayReduce = require('./_arrayReduce'),
- mapToArray = require('./_mapToArray');
-
-/** Used to compose bitmasks for cloning. */
-var CLONE_DEEP_FLAG = 1;
-
-/**
- * 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), CLONE_DEEP_FLAG) : mapToArray(map);
- return arrayReduce(array, addMapEntry, new map.constructor);
-}
-
-module.exports = cloneMap;