Determines if a value is a RegExp.
isRegExp(/abc/); // trueisRegExp(new RegExp('abc')); // trueisRegExp('abc'); // false Copy
isRegExp(/abc/); // trueisRegExp(new RegExp('abc')); // trueisRegExp('abc'); // false
The value to check.
A boolean indicating whether the value is a RegExp.
Determines if a value is a RegExp.
Example