UNPKG

285 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.capitalize = void 0;
7
8var capitalize = function capitalize(string) {
9 return string.replace(/^./, function Upper(match) {
10 return match.toUpperCase();
11 });
12};
13
14exports.capitalize = capitalize;
\No newline at end of file