(str)
| 3391 | */ |
| 3392 | |
| 3393 | var ucwords = function (str) { |
| 3394 | return str.toLowerCase().replace(/\b(\w)|\s(\w)/g, function($1) { |
| 3395 | return $1.toUpperCase(); |
| 3396 | }); |
| 3397 | }; |
| 3398 | |
| 3399 | editormd.ucwords = editormd.wordsFirstUpperCase = ucwords; |
| 3400 |
nothing calls this directly
no outgoing calls
no test coverage detected