@pol-studios/db 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.js +4824 -7073
- package/dist/index.js.map +1 -1
- package/dist/index.native.js +8258 -10507
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +4350 -6599
- package/dist/index.web.js.map +1 -1
- package/dist/parser/index.js +26 -26
- package/dist/parser/index.js.map +1 -1
- package/dist/query/index.js +6898 -9147
- package/dist/query/index.js.map +1 -1
- package/dist/realtime/index.js +7017 -9266
- package/dist/realtime/index.js.map +1 -1
- package/package.json +12 -13
package/dist/parser/index.js
CHANGED
|
@@ -24,9 +24,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
mod
|
|
25
25
|
));
|
|
26
26
|
|
|
27
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
27
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/tools/output/categories.js
|
|
28
28
|
var require_categories = __commonJS({
|
|
29
|
-
"../../../node_modules/.pnpm/xregexp@5.1.
|
|
29
|
+
"../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/tools/output/categories.js"(exports, module) {
|
|
30
30
|
module.exports = [
|
|
31
31
|
{
|
|
32
32
|
"name": "C",
|
|
@@ -248,9 +248,9 @@ var require_categories = __commonJS({
|
|
|
248
248
|
}
|
|
249
249
|
});
|
|
250
250
|
|
|
251
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
251
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/tools/output/properties.js
|
|
252
252
|
var require_properties = __commonJS({
|
|
253
|
-
"../../../node_modules/.pnpm/xregexp@5.1.
|
|
253
|
+
"../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/tools/output/properties.js"(exports, module) {
|
|
254
254
|
module.exports = [
|
|
255
255
|
{
|
|
256
256
|
"name": "ASCII",
|
|
@@ -295,9 +295,9 @@ var require_properties = __commonJS({
|
|
|
295
295
|
}
|
|
296
296
|
});
|
|
297
297
|
|
|
298
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
298
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/tools/output/scripts.js
|
|
299
299
|
var require_scripts = __commonJS({
|
|
300
|
-
"../../../node_modules/.pnpm/xregexp@5.1.
|
|
300
|
+
"../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/tools/output/scripts.js"(exports, module) {
|
|
301
301
|
module.exports = [
|
|
302
302
|
{
|
|
303
303
|
"name": "Adlam",
|
|
@@ -1559,15 +1559,15 @@ var OPERATOR_MAP = {
|
|
|
1559
1559
|
)
|
|
1560
1560
|
};
|
|
1561
1561
|
|
|
1562
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
1562
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/xregexp.js
|
|
1563
1563
|
var REGEX_DATA = "xregexp";
|
|
1564
1564
|
var features = {
|
|
1565
1565
|
astral: false,
|
|
1566
1566
|
namespacing: true
|
|
1567
1567
|
};
|
|
1568
1568
|
var fixed = {};
|
|
1569
|
-
var regexCache =
|
|
1570
|
-
var patternCache =
|
|
1569
|
+
var regexCache = {};
|
|
1570
|
+
var patternCache = {};
|
|
1571
1571
|
var tokens = [];
|
|
1572
1572
|
var defaultScope = "default";
|
|
1573
1573
|
var classScope = "class";
|
|
@@ -1873,7 +1873,7 @@ function XRegExp(pattern, flags) {
|
|
|
1873
1873
|
);
|
|
1874
1874
|
}
|
|
1875
1875
|
XRegExp.prototype = new RegExp();
|
|
1876
|
-
XRegExp.version = "5.1.
|
|
1876
|
+
XRegExp.version = "5.1.1";
|
|
1877
1877
|
XRegExp._clipDuplicates = clipDuplicates;
|
|
1878
1878
|
XRegExp._hasNativeFlag = hasNativeFlag;
|
|
1879
1879
|
XRegExp._dec = dec;
|
|
@@ -1913,9 +1913,9 @@ XRegExp.cache = (pattern, flags) => {
|
|
|
1913
1913
|
};
|
|
1914
1914
|
XRegExp.cache.flush = (cacheName) => {
|
|
1915
1915
|
if (cacheName === "patterns") {
|
|
1916
|
-
patternCache =
|
|
1916
|
+
patternCache = {};
|
|
1917
1917
|
} else {
|
|
1918
|
-
regexCache =
|
|
1918
|
+
regexCache = {};
|
|
1919
1919
|
}
|
|
1920
1920
|
};
|
|
1921
1921
|
XRegExp.escape = (str) => String(nullThrows(str)).replace(/[\\\[\]{}()*+?.^$|]/g, "\\$&").replace(/[\s#\-,]/g, (match) => `\\u${pad4(hex(match.charCodeAt(0)))}`);
|
|
@@ -2368,7 +2368,7 @@ XRegExp.addToken(
|
|
|
2368
2368
|
);
|
|
2369
2369
|
var xregexp_default = XRegExp;
|
|
2370
2370
|
|
|
2371
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2371
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/addons/build.js
|
|
2372
2372
|
var build_default = (XRegExp2) => {
|
|
2373
2373
|
const REGEX_DATA2 = "xregexp";
|
|
2374
2374
|
const subParts = /(\()(?!\?)|\\([1-9]\d*)|\\[\s\S]|\[(?:[^\\\]]|\\[\s\S])*\]/g;
|
|
@@ -2492,7 +2492,7 @@ var build_default = (XRegExp2) => {
|
|
|
2492
2492
|
};
|
|
2493
2493
|
};
|
|
2494
2494
|
|
|
2495
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2495
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/addons/matchrecursive.js
|
|
2496
2496
|
var matchrecursive_default = (XRegExp2) => {
|
|
2497
2497
|
function row(name, value, start, end) {
|
|
2498
2498
|
return {
|
|
@@ -2622,7 +2622,7 @@ var matchrecursive_default = (XRegExp2) => {
|
|
|
2622
2622
|
};
|
|
2623
2623
|
};
|
|
2624
2624
|
|
|
2625
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2625
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/addons/unicode-base.js
|
|
2626
2626
|
var unicode_base_default = (XRegExp2) => {
|
|
2627
2627
|
const unicode = {};
|
|
2628
2628
|
const unicodeTypes = {};
|
|
@@ -2774,7 +2774,7 @@ var unicode_base_default = (XRegExp2) => {
|
|
|
2774
2774
|
};
|
|
2775
2775
|
};
|
|
2776
2776
|
|
|
2777
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2777
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/addons/unicode-categories.js
|
|
2778
2778
|
var import_categories = __toESM(require_categories());
|
|
2779
2779
|
var unicode_categories_default = (XRegExp2) => {
|
|
2780
2780
|
if (!XRegExp2.addUnicodeData) {
|
|
@@ -2783,7 +2783,7 @@ var unicode_categories_default = (XRegExp2) => {
|
|
|
2783
2783
|
XRegExp2.addUnicodeData(import_categories.default);
|
|
2784
2784
|
};
|
|
2785
2785
|
|
|
2786
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2786
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/addons/unicode-properties.js
|
|
2787
2787
|
var import_properties = __toESM(require_properties());
|
|
2788
2788
|
var unicode_properties_default = (XRegExp2) => {
|
|
2789
2789
|
if (!XRegExp2.addUnicodeData) {
|
|
@@ -2799,7 +2799,7 @@ var unicode_properties_default = (XRegExp2) => {
|
|
|
2799
2799
|
XRegExp2.addUnicodeData(unicodeData);
|
|
2800
2800
|
};
|
|
2801
2801
|
|
|
2802
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2802
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/addons/unicode-scripts.js
|
|
2803
2803
|
var import_scripts = __toESM(require_scripts());
|
|
2804
2804
|
var unicode_scripts_default = (XRegExp2) => {
|
|
2805
2805
|
if (!XRegExp2.addUnicodeData) {
|
|
@@ -2808,7 +2808,7 @@ var unicode_scripts_default = (XRegExp2) => {
|
|
|
2808
2808
|
XRegExp2.addUnicodeData(import_scripts.default, "Script");
|
|
2809
2809
|
};
|
|
2810
2810
|
|
|
2811
|
-
// ../../../node_modules/.pnpm/xregexp@5.1.
|
|
2811
|
+
// ../../../node_modules/.pnpm/xregexp@5.1.1/node_modules/xregexp/src/index.js
|
|
2812
2812
|
build_default(xregexp_default);
|
|
2813
2813
|
matchrecursive_default(xregexp_default);
|
|
2814
2814
|
unicode_base_default(xregexp_default);
|
|
@@ -3684,35 +3684,35 @@ export {
|
|
|
3684
3684
|
|
|
3685
3685
|
xregexp/src/xregexp.js:
|
|
3686
3686
|
(*!
|
|
3687
|
-
* XRegExp 5.1.
|
|
3687
|
+
* XRegExp 5.1.1
|
|
3688
3688
|
* <xregexp.com>
|
|
3689
3689
|
* Steven Levithan (c) 2007-present MIT License
|
|
3690
3690
|
*)
|
|
3691
3691
|
|
|
3692
3692
|
xregexp/src/addons/build.js:
|
|
3693
3693
|
(*!
|
|
3694
|
-
* XRegExp.build 5.1.
|
|
3694
|
+
* XRegExp.build 5.1.1
|
|
3695
3695
|
* <xregexp.com>
|
|
3696
3696
|
* Steven Levithan (c) 2012-present MIT License
|
|
3697
3697
|
*)
|
|
3698
3698
|
|
|
3699
3699
|
xregexp/src/addons/matchrecursive.js:
|
|
3700
3700
|
(*!
|
|
3701
|
-
* XRegExp.matchRecursive 5.1.
|
|
3701
|
+
* XRegExp.matchRecursive 5.1.1
|
|
3702
3702
|
* <xregexp.com>
|
|
3703
3703
|
* Steven Levithan (c) 2009-present MIT License
|
|
3704
3704
|
*)
|
|
3705
3705
|
|
|
3706
3706
|
xregexp/src/addons/unicode-base.js:
|
|
3707
3707
|
(*!
|
|
3708
|
-
* XRegExp Unicode Base 5.1.
|
|
3708
|
+
* XRegExp Unicode Base 5.1.1
|
|
3709
3709
|
* <xregexp.com>
|
|
3710
3710
|
* Steven Levithan (c) 2008-present MIT License
|
|
3711
3711
|
*)
|
|
3712
3712
|
|
|
3713
3713
|
xregexp/src/addons/unicode-categories.js:
|
|
3714
3714
|
(*!
|
|
3715
|
-
* XRegExp Unicode Categories 5.1.
|
|
3715
|
+
* XRegExp Unicode Categories 5.1.1
|
|
3716
3716
|
* <xregexp.com>
|
|
3717
3717
|
* Steven Levithan (c) 2010-present MIT License
|
|
3718
3718
|
* Unicode data by Mathias Bynens <mathiasbynens.be>
|
|
@@ -3720,7 +3720,7 @@ xregexp/src/addons/unicode-categories.js:
|
|
|
3720
3720
|
|
|
3721
3721
|
xregexp/src/addons/unicode-properties.js:
|
|
3722
3722
|
(*!
|
|
3723
|
-
* XRegExp Unicode Properties 5.1.
|
|
3723
|
+
* XRegExp Unicode Properties 5.1.1
|
|
3724
3724
|
* <xregexp.com>
|
|
3725
3725
|
* Steven Levithan (c) 2012-present MIT License
|
|
3726
3726
|
* Unicode data by Mathias Bynens <mathiasbynens.be>
|
|
@@ -3728,7 +3728,7 @@ xregexp/src/addons/unicode-properties.js:
|
|
|
3728
3728
|
|
|
3729
3729
|
xregexp/src/addons/unicode-scripts.js:
|
|
3730
3730
|
(*!
|
|
3731
|
-
* XRegExp Unicode Scripts 5.1.
|
|
3731
|
+
* XRegExp Unicode Scripts 5.1.1
|
|
3732
3732
|
* <xregexp.com>
|
|
3733
3733
|
* Steven Levithan (c) 2010-present MIT License
|
|
3734
3734
|
* Unicode data by Mathias Bynens <mathiasbynens.be>
|