
## [1.3.3](https://github.com/ZynerOrg/xyter/compare/v1.3.2...v1.3.3) (2022-12-13) ### Bug Fixes * add custom semrel git ([c07befe
](c07befe678
))
5 lines
167 B
JavaScript
5 lines
167 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = (text) => {
|
|
return text.charAt(0).toUpperCase() + text.slice(1);
|
|
};
|