12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
// helper to capitalize strings
|
|
|
|
exports.default = function (str) {
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
};
|
|
|
|
module.exports = exports["default"]; |