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 © Sindre Sorhus
Last updated 2 years ago