@hpcc-js/comms 2.99.1 → 2.99.3
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/dist/index.es6.js +27 -11
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +11 -7
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +27 -11
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/clienttools/eclcc.js +16 -4
- package/lib-es6/clienttools/eclcc.js.map +1 -1
- package/lib-es6/ecl/queryGraph.js +6 -2
- package/lib-es6/ecl/queryGraph.js.map +1 -1
- package/package.json +6 -6
- package/src/__package__.ts +2 -2
- package/src/clienttools/eclcc.ts +12 -4
- package/src/ecl/queryGraph.ts +6 -2
- package/types/__package__.d.ts +2 -2
- package/types/clienttools/eclcc.d.ts.map +1 -1
- package/types/ecl/queryGraph.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -648,8 +648,8 @@
|
|
|
648
648
|
}
|
|
649
649
|
|
|
650
650
|
var PKG_NAME = "@hpcc-js/comms";
|
|
651
|
-
var PKG_VERSION = "2.99.
|
|
652
|
-
var BUILD_VERSION = "2.107.
|
|
651
|
+
var PKG_VERSION = "2.99.3";
|
|
652
|
+
var BUILD_VERSION = "2.107.5";
|
|
653
653
|
|
|
654
654
|
/******************************************************************************
|
|
655
655
|
Copyright (c) Microsoft Corporation.
|
|
@@ -3570,10 +3570,10 @@
|
|
|
3570
3570
|
var group = locale.grouping === undefined || locale.thousands === undefined ? identity : formatGroup(map.call(locale.grouping, Number), locale.thousands + ""),
|
|
3571
3571
|
currencyPrefix = locale.currency === undefined ? "" : locale.currency[0] + "",
|
|
3572
3572
|
currencySuffix = locale.currency === undefined ? "" : locale.currency[1] + "",
|
|
3573
|
-
decimal = locale.decimal
|
|
3573
|
+
decimal = locale.decimal + "",
|
|
3574
3574
|
numerals = locale.numerals === undefined ? identity : formatNumerals(map.call(locale.numerals, String)),
|
|
3575
3575
|
percent = locale.percent === undefined ? "%" : locale.percent + "",
|
|
3576
|
-
minus = locale.minus
|
|
3576
|
+
minus = locale.minus + "",
|
|
3577
3577
|
nan = locale.nan === undefined ? "NaN" : locale.nan + "";
|
|
3578
3578
|
|
|
3579
3579
|
function newFormat(specifier) {
|
|
@@ -3766,7 +3766,7 @@
|
|
|
3766
3766
|
if (step < 0) while (++step <= 0) {
|
|
3767
3767
|
while (offseti(date, -1), !test(date)) {} // eslint-disable-line no-empty
|
|
3768
3768
|
} else while (--step >= 0) {
|
|
3769
|
-
while (offseti(date,
|
|
3769
|
+
while (offseti(date, 1), !test(date)) {} // eslint-disable-line no-empty
|
|
3770
3770
|
}
|
|
3771
3771
|
}
|
|
3772
3772
|
});
|
|
@@ -9112,9 +9112,13 @@
|
|
|
9112
9112
|
else if (edge._sourceActivity || edge._targetActivity) {
|
|
9113
9113
|
edge._isSpill = true;
|
|
9114
9114
|
var source = edge.getSource();
|
|
9115
|
-
source
|
|
9115
|
+
if (source) {
|
|
9116
|
+
source._isSpill = true;
|
|
9117
|
+
}
|
|
9116
9118
|
var target = edge.getTarget();
|
|
9117
|
-
target
|
|
9119
|
+
if (target) {
|
|
9120
|
+
target._isSpill = true;
|
|
9121
|
+
}
|
|
9118
9122
|
}
|
|
9119
9123
|
retVal.addEdge(edge);
|
|
9120
9124
|
break;
|