Skip to content
Snippets Groups Projects
utilities.js 219 B
Newer Older
export function uppercaseFirst(string = "") {
    return string.charAt(0).toUpperCase() + string.slice(1);
}

export function lowercaseFirst(string = "") {
    return string.charAt(0).toLowerCase() + string.slice(1);
}