@dra2020/baseclient 1.0.87 → 1.0.88

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.
@@ -2891,6 +2891,11 @@ class MultiBlockMapping {
2891
2891
  }
2892
2892
  return undefined;
2893
2893
  }
2894
+ // Just walks first map
2895
+ forEach(cb) {
2896
+ if (this.entries.length)
2897
+ Object.keys(this.entries[0].bm).forEach(blockid => cb(blockid));
2898
+ }
2894
2899
  }
2895
2900
  exports.MultiBlockMapping = MultiBlockMapping;
2896
2901