CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
toLower.js29 linesDownload Raw Back to lodash
1var toString = require('./toString');2 3/**4 * Converts `string`, as a whole, to lower case just like5 * [String#toLowerCase](https://mdn.io/toLowerCase).6 *7 * @static8 * @memberOf _9 * @since 4.0.010 * @category String11 * @param {string} [string=''] The string to convert.12 * @returns {string} Returns the lower cased string.13 * @example14 *15 * _.toLower('--Foo-Bar--');16 * // => '--foo-bar--'17 *18 * _.toLower('fooBar');19 * // => 'foobar'20 *21 * _.toLower('__FOO_BAR__');22 * // => '__foo_bar__'23 */24function toLower(value) {25  return toString(value).toLowerCase();26}27 28module.exports = toLower;29 
basant307/AI_Governance_Project · CoolFace