bns_zhgd_web/node_modules/is-regexp
haozq 65e8192a56 first commit 2025-04-02 10:01:21 +08:00
..
index.js first commit 2025-04-02 10:01:21 +08:00
package.json first commit 2025-04-02 10:01:21 +08:00
readme.md first commit 2025-04-02 10:01:21 +08:00

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