uiwjs / react-json-view

A React component for displaying and editing javascript arrays and JSON objects.
https://uiwjs.github.io/react-json-view/
MIT License
188 stars 11 forks source link

fix: Uncaught TypeError: Do not know how to serialize a BigInt #42 #43

Closed gregfenton closed 5 months ago

gregfenton commented 5 months ago

Recommendation: create a utility function:

const toBigIntString = (bi: BigInt) => bi.toString() + 'n';

and use it in the 3 places in code where + 'n' currently is happening.