@wesjet/function.js
Version:
wesjet javascript library
11 lines (10 loc) • 349 B
JavaScript
/**
* 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);