Every line of 'javascript tolower' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
12 export function toLower(string) { 13 return string ? string.toLowerCase() : ''; 14 }
3 function toLower (s: any) { 4 return !!s && typeof s === 'string' ? s.toLowerCase() : '' 5 }
37 function charCodeToLower(charCode) { 38 if (A_CODE <= charCode && charCode <= Z_CODE) { 39 return charCode + a_CODE - A_CODE; 40 } 41 return charCode; 42 }
328 function toLower(string) { 329 return (string === null) ? "" : string.toLowerCase(); 330 }
10 function toLower(v) { 11 return v.toLowerCase(); 12 }
3209 function* toLower() { 3210 while (yield* this.pull()) { 3211 yield* this.push(_.toLower(this.value)); 3212 } 3213 }
41 function lower (str){ 42 return str.toLowerCase(); 43 }
22 function toLower(value) { 23 return toString(value).toLowerCase() 24 }
9 function toLowerCase (value) { 10 return value.toLowerCase() 11 }