lhl 6ff0e96ad3 8-4-1 | hai 1 ano | |
---|---|---|
.. | ||
index.js | hai 1 ano | |
package.json | hai 1 ano | |
readme.md | hai 1 ano |
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