File size: 153 Bytes
ab75c71
 
 
 
1
2
3
4
5
export const formatActionnableName = (input: string) => {
  input = input.replaceAll("-", " ")
  return input.charAt(0).toUpperCase() + input.slice(1)
}