(s)
| 221 | : s; |
| 222 | }; |
| 223 | var manualUppercase = function(s) { |
| 224 | /* jshint bitwise: false */ |
| 225 | return isString(s) |
| 226 | ? s.replace(/[a-z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) & ~32);}) |
| 227 | : s; |
| 228 | }; |
| 229 | |
| 230 | |
| 231 | // String#toLowerCase and String#toUpperCase don't produce correct results in browsers with Turkish |
nothing calls this directly
no test coverage detected