ITADN

Padding is off in JSON.stringify

#939OpenChALkeR 创建于 2026-02-09
C
ChALkeRcommented
```console > print(JSON.stringify({"d":{"x":0},"b":[1,2],"e":{"foo":"bar"}},undefined,2)) { "d": { "x": 0 }, "b": [ 1, 2 ], "e": { "foo": "bar" } } ``` Indentation is off from some point, looks like missing state pop?
0 条评论