Skip to content

isRegExp

isRegExp(target)

Checks if a value is a RegExp instance.

ts
isRegExp(/hello/); // true
isRegExp("hello"); // false
ts
pipe(/hello/, isRegExp()); // true
pipe("hello", isRegExp()); // false