cmy a6e36702ec 2023-3-1 2 anni fa
..
index.js a6e36702ec 2023-3-1 2 anni fa
package.json a6e36702ec 2023-3-1 2 anni fa
readme.md a6e36702ec 2023-3-1 2 anni fa

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