You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Vre2/Validate whether a given va...

10 lines
225 B
JavaScript

function is_regexp(value)
{
return toString.call(value) === '[object RegExp]';
}
console.log(is_regexp(/test/));
console.log(is_regexp('bar'));
console.log(is_regexp(72));