(str)
| 3371 | */ |
| 3372 | |
| 3373 | var ucwords = function (str) { |
| 3374 | return str.toLowerCase().replace(/\b(\w)|\s(\w)/g, function($1) { |
| 3375 | return $1.toUpperCase(); |
| 3376 | }); |
| 3377 | }; |
| 3378 | |
| 3379 | editormd.ucwords = editormd.wordsFirstUpperCase = ucwords; |
| 3380 |
nothing calls this directly
no outgoing calls
no test coverage detected