Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(hotfix): jsonify shouldn't set false to true
- meant to use the previous code as an alternative to using a default arg, but `!jsonify` detects false (etc), not just undefined - switched to just using a default arg, which was what I originally used before moving defaults outside of the destructuring - alternative is to check `typeof jsonify === 'undefined'` instead - default args seem to provide better typings in my experience, so stick to that for now
- Loading branch information