PromoCursed/node_modules/is-regexp
2024-08-20 23:25:37 +04:00
..
index.js Первый коммит 2024-08-20 23:25:37 +04:00
package.json Первый коммит 2024-08-20 23:25:37 +04:00
readme.md Первый коммит 2024-08-20 23:25:37 +04:00

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