(s)
| 212 | : s; |
| 213 | }; |
| 214 | var manualUppercase = function(s) { |
| 215 | /* jshint bitwise: false */ |
| 216 | return isString(s) |
| 217 | ? s.replace(/[a-z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) & ~32);}) |
| 218 | : s; |
| 219 | }; |
| 220 | |
| 221 | |
| 222 | // String#toLowerCase and String#toUpperCase don't produce correct results in browsers with Turkish |
nothing calls this directly
no test coverage detected