You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportfunctionisSerializedBigint(value: unknown): value is JSONBigint{
60
+
return(
61
+
typeofvalue==="object"&&
62
+
value!==null&&
63
+
Object.keys(value).length===2&&
64
+
"type"invalue&&
65
+
// @ts-ignore can remove after TypeScript 4.9.x: https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-9.html#unlisted-property-narrowing-with-the-in-operator
66
+
value.type==="bigint"&&
67
+
"value"invalue&&
68
+
// @ts-ignore can remove after TypeScript 4.9.x: https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-9.html#unlisted-property-narrowing-with-the-in-operator
0 commit comments