Version 1
[yaffs-website] / node_modules / uncss / node_modules / form-data / node_modules / lodash / stubString.js
diff --git a/node_modules/uncss/node_modules/form-data/node_modules/lodash/stubString.js b/node_modules/uncss/node_modules/form-data/node_modules/lodash/stubString.js
new file mode 100644 (file)
index 0000000..2db0bed
--- /dev/null
@@ -0,0 +1,18 @@
+/**
+ * This method returns an empty string.
+ *
+ * @static
+ * @memberOf _
+ * @since 4.13.0
+ * @category Util
+ * @returns {string} Returns the empty string.
+ * @example
+ *
+ * _.times(2, _.stubString);
+ * // => ['', '']
+ */
+function stubString() {
+  return '';
+}
+
+module.exports = stubString;