Version 1
[yaffs-website] / node_modules / grunt-legacy-log-utils / node_modules / lodash / toLower.js
diff --git a/node_modules/grunt-legacy-log-utils/node_modules/lodash/toLower.js b/node_modules/grunt-legacy-log-utils/node_modules/lodash/toLower.js
new file mode 100644 (file)
index 0000000..02111c7
--- /dev/null
@@ -0,0 +1,26 @@
+var toString = require('./toString');
+
+/**
+ * Converts `string`, as a whole, to lower case.
+ *
+ * @static
+ * @memberOf _
+ * @category String
+ * @param {string} [string=''] The string to convert.
+ * @returns {string} Returns the lower cased string.
+ * @example
+ *
+ * _.toLower('--Foo-Bar');
+ * // => '--foo-bar'
+ *
+ * _.toLower('fooBar');
+ * // => 'foobar'
+ *
+ * _.toLower('__FOO_BAR__');
+ * // => '__foo_bar__'
+ */
+function toLower(value) {
+  return toString(value).toLowerCase();
+}
+
+module.exports = toLower;