Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelMor25 committed May 10, 2024
1 parent b3391a5 commit 7475ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export function inaccessibleTypeToStr (obj) {
}

export function isNullOrUndefined (obj) {
return obj === null || obj === void 0;
return obj === void 0 || isNull(obj)
}

export function isPrimitiveType (obj) {
Expand Down

0 comments on commit 7475ca2

Please sign in to comment.