Safely and quickly serialize JavaScript objects
Similar to #41 we could add support for Symbols via toString and `is-symbol`. ```sh > const safeStringify = require('fast-safe-stringify') undefined > safeStringify({ foo: 'bar', [Symbol.for('axe.silent')]: true }); '{"foo":"bar"}' > safeStringify({ foo: 'bar', [Symbol.for('axe.silent').toString()]: true }); '{"foo":"bar","Symbol(axe.silent)":true}' ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by titanism and has received 1 comments.