Version 1
[yaffs-website] / node_modules / grunt-uncss / node_modules / lodash / _baseSetToString.js
diff --git a/node_modules/grunt-uncss/node_modules/lodash/_baseSetToString.js b/node_modules/grunt-uncss/node_modules/lodash/_baseSetToString.js
new file mode 100644 (file)
index 0000000..89eaca3
--- /dev/null
@@ -0,0 +1,22 @@
+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;