unetjs 2.0.6 → 2.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/dist/cjs/unet.cjs +2 -1
- package/dist/esm/unet.js +2 -1
- package/dist/unetjs.js +1 -0
- package/dist/unetjs.js.map +1 -1
- package/dist/unetjs.min.js +1 -1
- package/dist/unetjs.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/unet.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* unet.js v2.0.
|
|
1
|
+
/* unet.js v2.0.7 2022-07-15T01:00:23.960Z */
|
|
2
2
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
@@ -1540,6 +1540,7 @@ class CachingAgentID extends AgentID {
|
|
|
1540
1540
|
async set(params, values, index=-1, timeout=5000) {
|
|
1541
1541
|
let s = await super.set(params, values, index, timeout);
|
|
1542
1542
|
this._updateCache(params, s, index);
|
|
1543
|
+
return s;
|
|
1543
1544
|
}
|
|
1544
1545
|
|
|
1545
1546
|
/**
|
package/dist/esm/unet.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* unet.js v2.0.
|
|
1
|
+
/* unet.js v2.0.7 2022-07-15T01:00:23.960Z */
|
|
2
2
|
|
|
3
3
|
/* fjage.js v1.10.1 */
|
|
4
4
|
|
|
@@ -1518,6 +1518,7 @@ class CachingAgentID extends AgentID {
|
|
|
1518
1518
|
async set(params, values, index=-1, timeout=5000) {
|
|
1519
1519
|
let s = await super.set(params, values, index, timeout);
|
|
1520
1520
|
this._updateCache(params, s, index);
|
|
1521
|
+
return s;
|
|
1521
1522
|
}
|
|
1522
1523
|
|
|
1523
1524
|
/**
|