Check if a value is a regular expression
npm install is-regexp> Check if a value is a regular expression
```
$ npm install is-regexp
`js
import isRegexp from 'is-regexp';
isRegexp('unicorn');
//=> false
isRegexp(/unicorn/);
//=> true
isRegexp(new RegExp('unicorn'));
//=> true
`
#### Why not just use instanceof` instead of this package?
- is - Type check values
---