amis-rpc-design/node_modules/@react-native-community/cli-platform-android/build/commands/runAndroid/toPascalCase.js
2023-10-07 19:42:30 +08:00

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