UNPKG

flipper-plugin

Version:

Flipper Desktop plugin SDK and components

22 lines 587 B
"use strict"; /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ Object.defineProperty(exports, "__esModule", { value: true }); exports.toFirstUpper = void 0; function toFirstUpper(name) { if (!name) { return name; } if (name.length === 1) { return name.toUpperCase(); } return name[0].toUpperCase() + name.substr(1); } exports.toFirstUpper = toFirstUpper; //# sourceMappingURL=toFirstUpper.js.map