Last updated 3 years ago
Was this helpful?
Check whether a variable is a regular expression
$ npm install --save is-regexp
var isRegexp = require('is-regexp'); isRegexp('unicorn'); //=> false isRegexp(/unicorn/); //=> true isRegexp(new RegExp('unicorn')); //=> true
MIT ©