mirror of
https://github.com/unraid/api.git
synced 2026-05-03 13:40:36 -05:00
10 lines
247 B
TypeScript
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);
|