Julian Grinblat
Julian Grinblat
I'm all for it, if that's the direction @frederikprijck agrees to take this module in I'll update this PR
A pro-tip I found when upgrading to node 18 is that you can define per-project `NODE_OPTIONS` inside `.npmrc`: ``` $ cat .npmrc node-options=--no-experimental-fetch ``` In case someone finds this approach...
I added some tests here! Not very thorough though 😅
I fixed the conflicts real fast, but didn't test properly! May need some tuning
@medberg Sorry for the late reply! Thanks for finding the solution to the issue :) Let me reopen this because there should probably be an example showing how to do...
I'll merge a PR implementing this :) Maybe add the ability to specify a json formatter?
I think one of the two is better? I can go with either! Can't think of a name for a combined option, it would be something like `jsonFormatter` or `jsonTabWidth`...
Well, `jsonFormatter` is the more general option. You could specify something like `--jsonFormatter ./jsonFormatter.js` which could look something like: ``` import beautify from "json-beautify"; export default (obj) => beatufy(obj, null,...
Hi, sorry for the late response, I was quite busy moving house >
I'm getting an error, `TypeError: Right-hand side of 'instanceof' is not callable` [here](https://github.com/sidorares/json-bigint/blob/2c0a5f896d7888e68e5f4ae3c7ea5cd42fd54473/lib/stringify.js#L218) I think this is the same problem as in this issue My app is bundled with `rollup`...