@fluidframework/map 2.12.0 → 2.13.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/map
2
2
 
3
+ ## 2.13.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.12.0
4
8
 
5
9
  Dependency updates only.
package/dist/directory.js CHANGED
@@ -1066,7 +1066,7 @@ class SubDirectory extends client_utils_1.TypedEventEmitter {
1066
1066
  const nextVal = localEntriesIterator.next();
1067
1067
  return nextVal.done
1068
1068
  ? { value: undefined, done: true }
1069
- : { value: [nextVal.value[0], nextVal.value[1].value], done: false };
1069
+ : { value: [nextVal.value[0], nextVal.value[1]?.value], done: false };
1070
1070
  },
1071
1071
  [Symbol.iterator]() {
1072
1072
  return this;