@colyseus/schema 2.0.25 → 2.0.26
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/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/esm/index.mjs +1 -1
- package/build/esm/index.mjs.map +1 -1
- package/build/umd/index.js +1 -1
- package/lib/types/MapSchema.js +1 -1
- package/lib/types/MapSchema.js.map +1 -1
- package/package.json +1 -1
- package/src/types/MapSchema.ts +1 -1
package/build/cjs/index.js
CHANGED
|
@@ -1048,7 +1048,7 @@ var MapSchema = /** @class */ (function () {
|
|
|
1048
1048
|
//
|
|
1049
1049
|
// // const index = this.$changes.indexes[key];
|
|
1050
1050
|
// // this.$indexes.delete(index);
|
|
1051
|
-
this.$changes.delete(key);
|
|
1051
|
+
this.$changes.delete(key.toString());
|
|
1052
1052
|
return this.$items.delete(key);
|
|
1053
1053
|
};
|
|
1054
1054
|
MapSchema.prototype.clear = function (changes) {
|