Every line of 'touppercase jquery' 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.
212 function toUpperCase(str) { 213 return str instanceof String ? str.toUpperCase() : str 214 }
293 function toUpperCase(str) { 294 return str.charAt(1).toUpperCase(); 295 }
21 export function toUpperCase(str) { 22 return str.toUpperCase(); 23 }