mol_wire_lib 1.0.455 → 1.0.457

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/node.test.js CHANGED
@@ -232,7 +232,8 @@ var $;
232
232
  const res = [];
233
233
  const max = this.cursor >= 0 ? this.cursor : this.sub_from;
234
234
  for (let i = this.pub_from; i < max; i += 2) {
235
- res.push(this.data[i]);
235
+ if (this.data[i])
236
+ res.push(this.data[i]);
236
237
  }
237
238
  return res;
238
239
  }