(s)
| 215 | |
| 216 | |
| 217 | var manualLowercase = function(s) { |
| 218 | /* jshint bitwise: false */ |
| 219 | return isString(s) |
| 220 | ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) |
| 221 | : s; |
| 222 | }; |
| 223 | var manualUppercase = function(s) { |
| 224 | /* jshint bitwise: false */ |
| 225 | return isString(s) |
nothing calls this directly
no test coverage detected