UNPKG

evenietminus

Version:
6 lines (5 loc) 175 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalize = function (str) { return str.slice(0, 1).toUpperCase() + str.slice(1); };