mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 17:08:27 +00:00
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
export function isValidRegex(regex: string) {
|
|
try {
|
|
new RegExp(regex);
|
|
return true;
|
|
} catch (err) {
|
|
return false;
|
|
}
|
|
}
|