UNPKG

slf

Version:
14 lines (13 loc) 314 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "capitalize", { enumerable: true, get: function() { return capitalize; } }); var capitalize = function(str) { return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase(); };