@mikro-orm/core 6.5.10-dev.12 → 6.5.10-dev.14

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.
@@ -271,17 +271,17 @@ class EntityLoader {
271
271
  });
272
272
  if ([enums_1.ReferenceKind.ONE_TO_ONE, enums_1.ReferenceKind.MANY_TO_ONE].includes(prop.kind) && items.length !== children.length) {
273
273
  const nullVal = this.em.config.get('forceUndefined') ? undefined : null;
274
- const itemsMap = {};
275
- const childrenMap = {};
274
+ const itemsMap = new Set();
275
+ const childrenMap = new Set();
276
276
  for (const item of items) {
277
- itemsMap[(0, wrap_1.helper)(item).getSerializedPrimaryKey()] ??= true;
277
+ itemsMap.add((0, wrap_1.helper)(item).getSerializedPrimaryKey());
278
278
  }
279
279
  for (const child of children) {
280
- childrenMap[(0, wrap_1.helper)(child).getSerializedPrimaryKey()] ??= true;
280
+ childrenMap.add((0, wrap_1.helper)(child).getSerializedPrimaryKey());
281
281
  }
282
282
  for (const entity of entities) {
283
283
  const key = (0, wrap_1.helper)(entity[prop.name] ?? {})?.getSerializedPrimaryKey();
284
- if (childrenMap[key] != null && itemsMap[key] == null) {
284
+ if (childrenMap.has(key) && !itemsMap.has(key)) {
285
285
  entity[prop.name] = nullVal;
286
286
  (0, wrap_1.helper)(entity).__originalEntityData[prop.name] = null;
287
287
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
- "version": "6.5.10-dev.12",
3
+ "version": "6.5.10-dev.14",
4
4
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -64,7 +64,7 @@
64
64
  "esprima": "4.0.1",
65
65
  "fs-extra": "11.3.2",
66
66
  "globby": "11.1.0",
67
- "mikro-orm": "6.5.10-dev.12",
67
+ "mikro-orm": "6.5.10-dev.14",
68
68
  "reflect-metadata": "0.2.2"
69
69
  }
70
70
  }
package/utils/Utils.js CHANGED
@@ -717,11 +717,11 @@ class Utils {
717
717
  return simple;
718
718
  }
719
719
  const objectType = Object.prototype.toString.call(value);
720
- const type = objectType.match(/\[object (\w+)]/)[1];
720
+ const type = objectType.match(/^\[object (.+)]$/)[1];
721
721
  if (type === 'Uint8Array') {
722
722
  return 'Buffer';
723
723
  }
724
- return ['Date', 'Buffer', 'RegExp'].includes(type) ? type : type.toLowerCase();
724
+ return type;
725
725
  }
726
726
  /**
727
727
  * Checks whether the value is POJO (e.g. `{ foo: 'bar' }`, and not instance of `Foo`)