1 2 3 4export const validateShortId = (id: string): boolean => { const shortIdRegex = /^[A-Z]{3}[0-9]{3}$/; return shortIdRegex.test(id); };
1 2 3 4
export const validateShortId = (id: string): boolean => { const shortIdRegex = /^[A-Z]{3}[0-9]{3}$/; return shortIdRegex.test(id); };