export const sanitise = (str) => { return str // TODO: maybe sanitise const ret = "" const value = str?.trim() // remove any leading "tt" or "thingtime" const toSanitise = ["tt", "thingtime"] return ret }