🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

regexp-support

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regexp-support - npm Package Compare versions

Comparing version

to
1.0.57

@@ -6,2 +6,41 @@ # Change Log

## [1.0.57](https://github.com/bluelovers/ws-regexp/compare/regexp-support@1.0.55...regexp-support@1.0.57) (2024-09-02)
### ✨ Features
* unicodeSets ([a9b36de](https://github.com/bluelovers/ws-regexp/commit/a9b36de64ef6d9a655522cdcba83c48eef052ea4))
### 🛠 Build System
* update build ([9b26251](https://github.com/bluelovers/ws-regexp/commit/9b26251e1651474427e46a4bfce3df96f7a92ec6))
### ♻️ Chores
* new env test ([cc53b15](https://github.com/bluelovers/ws-regexp/commit/cc53b156bf4df12b023eb628a69efe18f4ccd15c))
* new env test ([e668477](https://github.com/bluelovers/ws-regexp/commit/e668477beb23752df9b32ce4d87571b378edb75f))
* new env test ([13dd722](https://github.com/bluelovers/ws-regexp/commit/13dd722ed3e96c05872dc17f96a2b35c311d2120))
## [1.0.56](https://github.com/bluelovers/ws-regexp/compare/regexp-support@1.0.55...regexp-support@1.0.56) (2024-09-02)
### ✨ Features
* unicodeSets ([a9b36de](https://github.com/bluelovers/ws-regexp/commit/a9b36de64ef6d9a655522cdcba83c48eef052ea4))
### ♻️ Chores
* new env test ([cc53b15](https://github.com/bluelovers/ws-regexp/commit/cc53b156bf4df12b023eb628a69efe18f4ccd15c))
* new env test ([e668477](https://github.com/bluelovers/ws-regexp/commit/e668477beb23752df9b32ce4d87571b378edb75f))
* new env test ([13dd722](https://github.com/bluelovers/ws-regexp/commit/13dd722ed3e96c05872dc17f96a2b35c311d2120))
## [1.0.55](https://github.com/bluelovers/ws-regexp/compare/regexp-support@1.0.54...regexp-support@1.0.55) (2024-08-24)

@@ -8,0 +47,0 @@

@@ -25,2 +25,4 @@ /**

readonly u: boolean;
readonly unicodeSets: boolean;
readonly v: boolean;
readonly dotAll: boolean;

@@ -62,2 +64,3 @@ readonly s: boolean;

unicodeWrap: boolean;
unicodeSets: boolean;
};

@@ -64,0 +67,0 @@ prototype: {

@@ -17,2 +17,7 @@ /**

/**
* @see https://v8.dev/features/regexp-v-flag
*/
unicodeSets = "v",
v = "v",
/**
* dot match all mode

@@ -19,0 +24,0 @@ * node.js 10

@@ -20,2 +20,7 @@ "use strict";

FlagsName["u"] = "u";
/**
* @see https://v8.dev/features/regexp-v-flag
*/
FlagsName["unicodeSets"] = "v";
FlagsName["v"] = "v";
// ---------------

@@ -22,0 +27,0 @@ /**

@@ -18,2 +18,3 @@ /**

unicodeWrap: boolean;
unicodeSets: boolean;
};

@@ -20,0 +21,0 @@ export declare const PatternTest: {

@@ -23,2 +23,3 @@ "use strict";

unicodeWrap: false,
unicodeSets: false,
};

@@ -82,2 +83,6 @@ exports.PatternTest = {

],
unicodeSets: [
['^\\p{RGI_Emoji}$', 'v', '⚽', true, 'test'],
['^\\p{RGI_Emoji}$', 'v', '👨🏾‍⚕️', true, 'test'],
],
};

@@ -84,0 +89,0 @@ // @ts-ignore

@@ -22,2 +22,3 @@ "use strict";

unicode: false,
unicodeSets: false,
hasIndices: false,

@@ -24,0 +25,0 @@ };

{
"name": "regexp-support",
"version": "1.0.55",
"version": "1.0.57",
"description": "check RegExp ( regular expressions ) support",

@@ -68,3 +68,3 @@ "keywords": [

},
"gitHead": "7804fe06cda102a7912e0955e38fd02687a1dd0f"
"gitHead": "245bdafe3cd1289c7f9d8d9056cb1b42e9366927"
}
{
"versions": {
"node": "22.6.0",
"acorn": "8.11.3",
"node": "22.7.0",
"acorn": "8.12.1",
"ada": "2.9.0",
"amaro": "0.0.6",
"ares": "1.32.3",
"amaro": "0.1.6",
"ares": "1.33.0",
"brotli": "1.1.0",

@@ -15,3 +15,3 @@ "cjs_module_lexer": "1.2.2",

"napi": "9",
"nbytes": "0.1.0",
"nbytes": "0.1.1",
"ncrypto": "0.0.1",

@@ -22,7 +22,7 @@ "nghttp2": "1.62.1",

"openssl": "3.0.13+quic",
"simdjson": "3.9.4",
"simdutf": "5.3.0",
"simdjson": "3.10.0",
"simdutf": "5.3.4",
"sqlite": "3.46.0",
"tz": "2024a",
"undici": "6.19.2",
"undici": "6.19.7",
"unicode": "15.1",

@@ -32,3 +32,3 @@ "uv": "1.48.0",

"v8": "12.4.254.21-node.18",
"zlib": "1.3.0.1-motley-209717d"
"zlib": "1.3.0.1-motley-71660e1"
},

@@ -48,2 +48,4 @@ "support": {

"u": true,
"unicodeSets": true,
"v": true,
"dotAll": true,

@@ -79,3 +81,4 @@ "s": true,

"classSub": false,
"unicodeWrap": true
"unicodeWrap": true,
"unicodeSets": true
},

@@ -92,2 +95,3 @@ "prototype": {

"unicode": true,
"unicodeSets": true,
"hasIndices": true

@@ -94,0 +98,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet