Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriqueSilverio committed Mar 5, 2023
1 parent e1283ea commit 1cfdb6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BuildingBlocks/Utils/Serializer.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import JSONBigIntLib from 'json-bigint'

const JSONBitInt = JSONBigIntLib({ useNativeBigInt: true })
const JSONBigInt = JSONBigIntLib({ useNativeBigInt: true })

export default class Serializer {
public static stringify(input: unknown): string {
return JSONBitInt.stringify(input)
return JSONBigInt.stringify(input)
}
}

0 comments on commit 1cfdb6e

Please sign in to comment.