UNPKG

174 BPlain TextView Raw
1"use strict";module.export({isValidRegex:()=>isValidRegex});function isValidRegex(str) {
2 try {
3 new RegExp(str)
4 return true
5 } catch (err) {
6 return false
7 }
8}