regexp-ast-analysis
Advanced tools
Comparing version 0.2.0 to 0.2.1
# Changelog | ||
## 0.2.1 (2021-06-01) | ||
### Changed | ||
- Added support for `d` flag. | ||
## 0.2.0 (2021-04-29) | ||
@@ -4,0 +11,0 @@ |
@@ -352,13 +352,43 @@ // Generated by dts-bundle-generator v5.9.0 | ||
export interface ReadonlyFlags { | ||
/** @default false */ | ||
/** | ||
* The `s` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly dotAll?: boolean; | ||
/** @default false */ | ||
/** | ||
* The `g` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly global?: boolean; | ||
/** @default false */ | ||
/** | ||
* The `d` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly hasIndices?: boolean; | ||
/** | ||
* The `i` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly ignoreCase?: boolean; | ||
/** @default false */ | ||
/** | ||
* The `m` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly multiline?: boolean; | ||
/** @default false */ | ||
/** | ||
* The `y` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly sticky?: boolean; | ||
/** @default false */ | ||
/** | ||
* The `u` flag. | ||
* | ||
* @default false | ||
*/ | ||
readonly unicode?: boolean; | ||
@@ -365,0 +395,0 @@ } |
{ | ||
"name": "regexp-ast-analysis", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A library for analysing JS RegExp", | ||
@@ -5,0 +5,0 @@ "main": "index", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52213
855