UNPKG

@wesjet/function.js

Version:
11 lines (10 loc) 349 B
/** * Copyright (c) Wesbitty, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ export const lowercaseFirstChar = (str) => str.charAt(0).toLowerCase() + str.slice(1); export const uppercaseFirstChar = (str) => str.charAt(0).toUpperCase() + str.slice(1);