export function validateTime(input: string) { if (input.length != 0 && input.length != 10) return true; return false; }