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) 353 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=/Users/thymikee/Developer/rnccli/packages/cli-platform-android/build/commands/runAndroid/toPascalCase.js.map