UNPKG

arcade-physics

Version:
31 lines 897 B
"use strict"; /** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ Object.defineProperty(exports, "__esModule", { value: true }); /** * Capitalizes the first letter of a string if there is one. * @example * UppercaseFirst('abc'); * // returns 'Abc' * @example * UppercaseFirst('the happy family'); * // returns 'The happy family' * @example * UppercaseFirst(''); * // returns '' * * @function Phaser.Utils.String.UppercaseFirst * @since 3.0.0 * * @param {string} str - The string to capitalize. * * @return {string} A new string, same as the first, but with the first letter capitalized. */ const UppercaseFirst = str => { return str && str[0].toUpperCase() + str.slice(1); }; exports.default = UppercaseFirst; //# sourceMappingURL=UppercaseFirst.js.map