peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
index.d.ts | před 2 roky | |
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
Check if a value is a regular expression
$ npm install is-regexp
const isRegexp = require('is-regexp');
isRegexp('unicorn');
//=> false
isRegexp(/unicorn/);
//=> true
isRegexp(new RegExp('unicorn'));
//=> true
MIT © Sindre Sorhus