VideoQuest / src /lib /formatActionnableName.ts
jbilcke-hf's picture
jbilcke-hf HF staff
changing the URL again as the public server is being abused by some users
ab75c71
raw
history blame contribute delete
153 Bytes
export const formatActionnableName = (input: string) => {
input = input.replaceAll("-", " ")
return input.charAt(0).toUpperCase() + input.slice(1)
}