Skip to content

Commit

Permalink
Merge 29d2cc5 into a93d740
Browse files Browse the repository at this point in the history
  • Loading branch information
otonashixav committed Jul 14, 2021
2 parents a93d740 + 29d2cc5 commit 1258019
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/solid/src/reactive/signal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,9 @@ export function hashValue(v: any): string {
if (s.has(v)) return;
s.add(v);
}
if (typeof v === "bigint") {
return `${v.toString()}n`;
}
return v;
}) || ""
)
Expand Down

0 comments on commit 1258019

Please sign in to comment.