const capitaliseFirstChar = (text: string): string => text.charAt(0).toUpperCase() + text.slice(1);

export default capitaliseFirstChar;
