// Useage: capitalise('hello world') // Returns 'Hello world' export const capitalise = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);