(s)
| 291 | |
| 292 | |
| 293 | var manualLowercase = function(s) { |
| 294 | /* eslint-disable no-bitwise */ |
| 295 | return isString(s) |
| 296 | ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) |
| 297 | : s; |
| 298 | /* eslint-enable */ |
| 299 | }; |
| 300 | var manualUppercase = function(s) { |
| 301 | /* eslint-disable no-bitwise */ |
| 302 | return isString(s) |
nothing calls this directly
no test coverage detected