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 Jan 6, 2024
1 parent 048c473 commit 5e34466
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 5e34466

Please sign in to comment.