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