UNPKG

@ardatan/string-interpolation

Version:
10 lines (7 loc) 252 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.titlecase = void 0; const titlecase = value => value.replace(/\w\S*/g, s => s.charAt(0).toUpperCase() + s.substr(1).toLowerCase()); exports.titlecase = titlecase;