wao 0.2.4 → 0.3.1
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/cjs/ao.js +1 -1
- package/cjs/aoconnect.js +1305 -345
- package/cjs/helpers.js +4 -4
- package/cjs/lua/apm.lua +61 -0
- package/cjs/lua/weavedrive.lua +53 -0
- package/esm/ao.js +2 -0
- package/esm/aoconnect.js +713 -3
- package/esm/helpers.js +1 -1
- package/esm/lua/apm.lua +61 -0
- package/esm/lua/weavedrive.lua +53 -0
- package/package.json +1 -1
package/cjs/ao.js
CHANGED
|
@@ -1386,7 +1386,7 @@ var AO = /*#__PURE__*/function () {
|
|
|
1386
1386
|
var getParams = function getParams(tags, opts) {
|
|
1387
1387
|
var _tags = tags;
|
|
1388
1388
|
var _opts = opts;
|
|
1389
|
-
if ((!(0, _ramda.isNil)(tags === null || tags === void 0 ? void 0 : tags.get) || !(0, _ramda.isNil)(tags === null || tags === void 0 ? void 0 : tags.check) || (0, _ramda.is)(Boolean, tags) || (0, _ramda.is)(String, tags)) && (0, _ramda.isNil)(opts)) {
|
|
1389
|
+
if ((!(0, _ramda.isNil)(tags === null || tags === void 0 ? void 0 : tags.get) || !(0, _ramda.isNil)(tags === null || tags === void 0 ? void 0 : tags.check) || !(0, _ramda.isNil)(tags === null || tags === void 0 ? void 0 : tags.data) || (0, _ramda.is)(Boolean, tags) || (0, _ramda.is)(String, tags)) && (0, _ramda.isNil)(opts)) {
|
|
1390
1390
|
_opts = tags;
|
|
1391
1391
|
_tags = null;
|
|
1392
1392
|
}
|