hrms-mgt/src/modules/04_registry/stores/time.ts

4 lines
124 B
TypeScript

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