(s)
| 197 | |
| 198 | |
| 199 | var manualLowercase = function(s) { |
| 200 | /* eslint-disable no-bitwise */ |
| 201 | return isString(s) |
| 202 | ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) |
| 203 | : s; |
| 204 | /* eslint-enable */ |
| 205 | }; |
| 206 | var manualUppercase = function(s) { |
| 207 | /* eslint-disable no-bitwise */ |
| 208 | return isString(s) |
nothing calls this directly
no test coverage detected