We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 330e674 commit 1bcb420Copy full SHA for 1bcb420
e2e/packages/sync-test/data/utils.ts
@@ -13,7 +13,7 @@ export function serialize(obj: unknown): string {
13
export function deserialize(blob: string): Record<string, unknown> {
14
const obj = JSON.parse(blob);
15
16
- // Check whether the value matches the mattern `bigint(${number}n)`
+ // Check whether the value matches the pattern `bigint(${number}n)`
17
// (serialization of bigint in `serialize`)
18
// and turn it back into a bigint
19
const regex = /^bigint\((-?\d+)\)$/; // Regular expression pattern.
0 commit comments