@elliemae/microfe-common 2.6.3 → 2.6.4

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.
@@ -70,10 +70,10 @@ class ScriptingObjectManager {
70
70
  guestId
71
71
  }) => {
72
72
  if (objectId === MODULE_OBJECT && !guestId) {
73
- this.#guestScriptingObjects.forEach((mSOs) => {
73
+ for (const [, mSOs] of this.#guestScriptingObjects) {
74
74
  const mSO = mSOs.get(objectId);
75
75
  if (mSO) return mSO;
76
- });
76
+ }
77
77
  }
78
78
  const SOs = guestId ? this.#guestScriptingObjects.get(guestId) : null;
79
79
  if (SOs) {
@@ -45,10 +45,10 @@ class ScriptingObjectManager {
45
45
  guestId
46
46
  }) => {
47
47
  if (objectId === MODULE_OBJECT && !guestId) {
48
- this.#guestScriptingObjects.forEach((mSOs) => {
48
+ for (const [, mSOs] of this.#guestScriptingObjects) {
49
49
  const mSO = mSOs.get(objectId);
50
50
  if (mSO) return mSO;
51
- });
51
+ }
52
52
  }
53
53
  const SOs = guestId ? this.#guestScriptingObjects.get(guestId) : null;
54
54
  if (SOs) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/microfe-common",
3
- "version": "2.6.3",
3
+ "version": "2.6.4",
4
4
  "description": "common micro frontend functional modules",
5
5
  "repository": {
6
6
  "type": "git",