some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _baseSetToString.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_baseSetToString.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_baseSetToString.js
deleted file mode 100644 (file)
index 89eaca3..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-var constant = require('./constant'),
-    defineProperty = require('./_defineProperty'),
-    identity = require('./identity');
-
-/**
- * The base implementation of `setToString` without support for hot loop shorting.
- *
- * @private
- * @param {Function} func The function to modify.
- * @param {Function} string The `toString` result.
- * @returns {Function} Returns `func`.
- */
-var baseSetToString = !defineProperty ? identity : function(func, string) {
-  return defineProperty(func, 'toString', {
-    'configurable': true,
-    'enumerable': false,
-    'value': constant(string),
-    'writable': true
-  });
-};
-
-module.exports = baseSetToString;