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