mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
7 lines
247 B
TypeScript
7 lines
247 B
TypeScript
import type { ParamMatcher } from '@sveltejs/kit';
|
|
import { UUID_REGEX } from '$lib/constants';
|
|
|
|
/* Returns true if the given param matches UUID format */
|
|
export const match: ParamMatcher = (param: string) => {
|
|
return UUID_REGEX.test(param);
|
|
};
|