some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _castFunction.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_castFunction.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_castFunction.js
deleted file mode 100644 (file)
index 98c91ae..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-var identity = require('./identity');
-
-/**
- * Casts `value` to `identity` if it's not a function.
- *
- * @private
- * @param {*} value The value to inspect.
- * @returns {Function} Returns cast function.
- */
-function castFunction(value) {
-  return typeof value == 'function' ? value : identity;
-}
-
-module.exports = castFunction;