is-supported-regexp-flag
Version:
Check whether a RegExp flag is supported
24 lines (15 loc) • 429 B
Markdown
# is-supported-regexp-flag
> Check whether a RegExp flag is supported
## Install
```
$ npm install is-supported-regexp-flag
```
## Usage
```js
import isSupportedRegexpFlag from 'is-supported-regexp-flag';
isSupportedRegexpFlag('g'); // As in `/foo/g`
//=> true
isSupportedRegexpFlag('u');
//=> false
```
The `RegExp` constructor throws if you're trying to use unsupported flags. This is a nicer way to check for support.