aboutsummaryrefslogtreecommitdiffstats
path: root/utils/validators.ts
blob: 5bf259a61f852ee0913115e313d9348a4a9d24ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const VALID_ID_REGEX = /^[a-z0-9_]+$/i;

export function validateQuestId(id: string): boolean {
  return VALID_ID_REGEX.test(id);
}

export function validateCategoryId(id: string): boolean {
  return VALID_ID_REGEX.test(id);
}

export function validateTaskId(id: string): boolean {
  return VALID_ID_REGEX.test(id);
}