@fluidframework/map 2.53.0 → 2.53.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/dist/directory.js CHANGED
@@ -1160,7 +1160,7 @@ class SubDirectory extends client_utils_1.TypedEventEmitter {
1160
1160
  forEach(callback) {
1161
1161
  this.throwIfDisposed();
1162
1162
  for (const [key, localValue] of this.internalIterator()) {
1163
- callback(localValue.value, key, this);
1163
+ callback(localValue, key, this);
1164
1164
  }
1165
1165
  }
1166
1166
  /**