Mohammad Asif cf937194cb Removed un-waned things 1. | hace 5 meses | |
---|---|---|
.. | ||
index.js | hace 5 meses | |
package.json | hace 5 meses | |
readme.md | hace 5 meses |
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