Hacker News new | ask | show | jobs
by sheept 5 days ago
This can be avoided by supplying a reviver:

    const json = '{ "a": 9007199254740993 }'
    JSON.parse(json, (_key, value, context) => /^\d+$/.test(context.source) ? BigInt(context.source) : value)
1 comments

Which can be avoided by using UUIDs
Or by putting that id between quotes so it's a string.