lhl 6ff0e96ad3 8-4-1 il y a 1 an
..
index.js 6ff0e96ad3 8-4-1 il y a 1 an
package.json 6ff0e96ad3 8-4-1 il y a 1 an
readme.md 6ff0e96ad3 8-4-1 il y a 1 an

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