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 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
293 function toUpperCase(str) { 294 return str.charAt(1).toUpperCase(); 295 }
21 export function toUpperCase(str) { 22 return str.toUpperCase(); 23 }