UNPKG

@react-native-community/cli-platform-android

Version:

This package is part of the [React Native CLI](../../README.md). It contains commands for managing the Android part of React Native app.

11 lines (9 loc) 264 B
"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.js.map