MCPcopy Create free account
hub / github.com/TruthHun/BookStack / ucwords

Function ucwords

static/editor.md/editormd.js:3373–3377  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected