core/apps/webapp/app/utils/regex.ts
2025-05-27 13:10:08 +05:30

9 lines
136 B
TypeScript

export function isValidRegex(regex: string) {
try {
new RegExp(regex);
return true;
} catch (err) {
return false;
}
}