cmy 02a04f55a0 2023-3-15 2 years ago
..
index.js 02a04f55a0 2023-3-15 2 years ago
package.json 02a04f55a0 2023-3-15 2 years ago
readme.md 02a04f55a0 2023-3-15 2 years ago

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