Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / lowerCase.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/lowerCase.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/lowerCase.js
new file mode 100644 (file)
index 0000000..4222dcb
--- /dev/null
@@ -0,0 +1,26 @@
+var createCompounder = require('./_createCompounder');
+
+/**
+ * Converts `string`, as space separated words, to lower case.
+ *
+ * @static
+ * @memberOf _
+ * @category String
+ * @param {string} [string=''] The string to convert.
+ * @returns {string} Returns the lower cased string.
+ * @example
+ *
+ * _.lowerCase('--Foo-Bar');
+ * // => 'foo bar'
+ *
+ * _.lowerCase('fooBar');
+ * // => 'foo bar'
+ *
+ * _.lowerCase('__FOO_BAR__');
+ * // => 'foo bar'
+ */
+var lowerCase = createCompounder(function(result, word, index) {
+  return result + (index ? ' ' : '') + word.toLowerCase();
+});
+
+module.exports = lowerCase;