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