Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ export function patchProperty(obj, prop) {
}
};

// The getter would return undefined for unassigned properties but the default value of an unassigned property is null
desc.get = function () {
return this[_prop];
return this[_prop] || null;
};

Object.defineProperty(obj, prop, desc);
Expand Down