some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _getMapData.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_getMapData.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_getMapData.js
deleted file mode 100644 (file)
index 17f6303..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-var isKeyable = require('./_isKeyable');
-
-/**
- * Gets the data for `map`.
- *
- * @private
- * @param {Object} map The map to query.
- * @param {string} key The reference key.
- * @returns {*} Returns the map data.
- */
-function getMapData(map, key) {
-  var data = map.__data__;
-  return isKeyable(key)
-    ? data[typeof key == 'string' ? 'string' : 'hash']
-    : data.map;
-}
-
-module.exports = getMapData;