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

Function firstUpperCase

static/editor.md/editormd.amd.js:3409–3413  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected