11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.toPascalCase = toPascalCase;
|
|
function toPascalCase(value) {
|
|
return value !== '' ? value[0].toUpperCase() + value.slice(1) : value;
|
|
}
|
|
|
|
//# sourceMappingURL=toPascalCase.ts.map
|