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 04f32b9 commit b44c3cbCopy full SHA for b44c3cb
redisinsight/ui/src/pages/browser/modules/key-details/components/rejson-details/utils/utils.ts
@@ -65,7 +65,11 @@ export const isValidKey = (key: string): boolean => /^"([^"\\]|\\.)*"$/.test(key
65
66
const JSONParser = JSONBigInt({
67
useNativeBigInt: true,
68
- strict: false
+ strict: false,
69
+ // Parse all numbers as BigInt if they exceed safe integer
70
+ alwaysParseAsBig: false,
71
+ // This option helps with scientific notation
72
+ storeAsString: true
73
})
74
75
export const parseValue = (value: any, type?: string): any => {
0 commit comments