@fluidframework/map 2.13.0 → 2.20.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.20.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.13.0
4
8
 
5
9
  Dependency updates only.
package/dist/directory.js CHANGED
@@ -426,7 +426,7 @@ class SharedDirectory extends internal_6.SharedObject {
426
426
  if (currentSubDirObject.storage) {
427
427
  for (const [key, serializable] of Object.entries(currentSubDirObject.storage)) {
428
428
  const localValue = this.makeLocal(key, currentSubDir.absolutePath,
429
- // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
429
+ // eslint-disable-next-line import/no-deprecated
430
430
  (0, internal_6.parseHandles)(serializable, this.serializer));
431
431
  currentSubDir.populateStorage(key, localValue);
432
432
  }
@@ -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;