Skip to content

Commit

Permalink
explicitly return false
Browse files Browse the repository at this point in the history
  • Loading branch information
mitschabaude committed Jun 22, 2023
1 parent 7a44013 commit 8d6fe80
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/circuit_value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ function isPrimitive(obj: any) {
for (let P of primitives) {
if (obj instanceof P) return true;
}
return false;
}

function cloneCircuitValue<T>(obj: T): T {
Expand Down

0 comments on commit 8d6fe80

Please sign in to comment.