小宝贝 2332bb7261 node пре 1 година
..
index.js 2332bb7261 node пре 1 година
package.json 2332bb7261 node пре 1 година
readme.md 2332bb7261 node пре 1 година

readme.md

is-regexp Build Status

Check whether a variable is a regular expression

Install

$ npm install --save is-regexp

Usage

var isRegexp = require('is-regexp');

isRegexp('unicorn');
//=> false

isRegexp(/unicorn/);
//=> true

isRegexp(new RegExp('unicorn'));
//=> true

License

MIT © Sindre Sorhus