wao 0.4.3 → 0.4.4

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/utils.js CHANGED
@@ -375,6 +375,7 @@ var mergeChecks = exports.mergeChecks = function mergeChecks(check1, check2, che
375
375
  } else return check1 || check2;
376
376
  };
377
377
  var isOutComplete = exports.isOutComplete = function isOutComplete(out, get) {
378
+ if ((0, _ramda.isNil)(get)) return true;
378
379
  if ((0, _ramda.isNil)(out)) return false;
379
380
  var _get = modGet(get);
380
381
  if (_get.obj) {
package/esm/utils.js CHANGED
@@ -235,6 +235,7 @@ const mergeChecks = (check1, check2, check) => {
235
235
  }
236
236
 
237
237
  const isOutComplete = (out, get) => {
238
+ if (isNil(get)) return true
238
239
  if (isNil(out)) return false
239
240
  const _get = modGet(get)
240
241
  if (_get.obj) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wao",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",