import { upperFirst } from 'lodash'; export function TitleCase(){ return function(input:string):string{ return upperFirst(input); } };