Feature request: add a `replacer` option that works like [JSON.stringify's replacer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#replacer), eg ``` const user = { id: 1, password: 'hunter2', name: 'Alice' }; const json = JSON.stringify(user, (key, value) => { if (key === 'password') return undefined; // omit return value; }); ```
Feature request: add a
replaceroption that works like JSON.stringify's replacer, eg