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

Function firstUpperCase

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

Source from the content-addressed store, hash-verified

3387 */
3388
3389 var firstUpperCase = function(str) {
3390 return str.toLowerCase().replace(/\b(\w)/, function($1){
3391 return $1.toUpperCase();
3392 });
3393 };
3394
3395 var ucfirst = firstUpperCase;
3396

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected