JSPM

is-supported-regexp-flag

2.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 590009
  • Score
    100M100P100Q202257F
  • License MIT

Check whether a RegExp flag is supported

Package Exports

  • is-supported-regexp-flag

Readme

is-supported-regexp-flag

Check whether a RegExp flag is supported

Install

$ npm install is-supported-regexp-flag

Usage

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.