Files
api/app/core/utils/misc/uppercase-first-char.ts
T
2020-11-11 16:13:30 +10:30

10 lines
247 B
TypeScript

/*!
* Copyright 2019-2020 Lime Technology Inc. All rights reserved.
* Written by: Alexis Tyler
*/
/**
* Uppercase first char of string.
*/
export const uppercaseFirstChar = (string: string) => string.charAt(0).toUpperCase() + string.slice(1);