Last updated 2 years ago
npm install regex-simplify
yarn add regex-simplify
// ES6 (includes typings) import regex from 'regex-simplify'; // CommonJS const regex = require('regex-simplify');
All functions returns this object:
{ include: true | false, // If the string matched with the regex matchs: RegExpMatchArray | null, // An array of all match groups: Array<Object | null> | null, // An array of all groups for get parts of the matched string }