(str)
| 3407 | */ |
| 3408 | |
| 3409 | var firstUpperCase = function(str) { |
| 3410 | return str.toLowerCase().replace(/\b(\w)/, function($1){ |
| 3411 | return $1.toUpperCase(); |
| 3412 | }); |
| 3413 | }; |
| 3414 | |
| 3415 | var ucfirst = firstUpperCase; |
| 3416 |
nothing calls this directly
no outgoing calls
no test coverage detected