(s)
| 281 | |
| 282 | |
| 283 | var manualLowercase = function(s) { |
| 284 | /* eslint-disable no-bitwise */ |
| 285 | return isString(s) |
| 286 | ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) |
| 287 | : s; |
| 288 | /* eslint-enable */ |
| 289 | }; |
| 290 | var manualUppercase = function(s) { |
| 291 | /* eslint-disable no-bitwise */ |
| 292 | return isString(s) |
nothing calls this directly
no test coverage detected