(s)
| 204 | |
| 205 | |
| 206 | var manualLowercase = function(s) { |
| 207 | /* jshint bitwise: false */ |
| 208 | return isString(s) |
| 209 | ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) |
| 210 | : s; |
| 211 | }; |
| 212 | var manualUppercase = function(s) { |
| 213 | /* jshint bitwise: false */ |
| 214 | return isString(s) |
nothing calls this directly
no test coverage detected