Skip to content

Commit

Permalink
fix HydratingObject being defined as a const
Browse files Browse the repository at this point in the history
  • Loading branch information
vixalien committed Dec 26, 2023
1 parent 591a4fb commit 5fb4617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function defineClassStructMethods(target, info) {
}

/** @type number | null */
export const _HydratingObject = null;
export let _HydratingObject = null;

export function createObject(info, gType) {
const ParentClass = getParentClass(info) ?? Object;
Expand Down

0 comments on commit 5fb4617

Please sign in to comment.