sequelize-typescript
Version:
Decorators and some other features for sequelize
11 lines • 323 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.capitalize = void 0;
/**
* Capitalize specified string value
*/
function capitalize(value) {
return value.charAt(0).toUpperCase() + value.substr(1, value.length);
}
exports.capitalize = capitalize;
//# sourceMappingURL=string.js.map
;