regexp-support
Advanced tools
Comparing version
{ | ||
"name": "regexp-support", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "check RegExp ( regular expressions ) support", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -65,3 +65,4 @@ # regexp-support | ||
```ts | ||
{ flags: | ||
{ nativeFlags: 'gimsuy', | ||
flags: | ||
{ multiline: true, | ||
@@ -93,4 +94,40 @@ m: true, | ||
lookBehindNegative: true }, | ||
hasFlagsProp: true, | ||
nativeFlags: 'gimsuy' } | ||
prototype: | ||
{ source: true, | ||
flags: true, | ||
lastIndex: true, | ||
dotAll: true, | ||
global: true, | ||
ignoreCase: true, | ||
multiline: true, | ||
sticky: true, | ||
unicode: true }, | ||
static: | ||
{ '$1': true, | ||
'$2': true, | ||
'$3': true, | ||
'$4': true, | ||
'$5': true, | ||
'$6': true, | ||
'$7': true, | ||
'$8': true, | ||
'$9': true, | ||
input: true, | ||
'$_': true, | ||
lastMatch: true, | ||
'$&': true, | ||
lastParen: true, | ||
'$+': true, | ||
leftContext: true, | ||
'$`': true, | ||
rightContext: true, | ||
'$\'': true, | ||
'$10': false, | ||
'$100': false }, | ||
symbol: | ||
{ species: false, | ||
match: true, | ||
replace: true, | ||
search: true, | ||
split: true } } | ||
``` | ||
@@ -97,0 +134,0 @@ |
46473
1.5%193
23.72%