Irina Glushko 2389e7160b HW1 done | 3 年之前 | |
---|---|---|
.. | ||
index.js | 3 年之前 | |
package.json | 3 年之前 | |
readme.md | 3 年之前 |
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