Closed RikSchefferAmsterdam closed 2 months ago
This PR makes sure undefined values are omitted when using stringify.
Solves: #46
For example:
const obj = { a: undefined, b: 'bar' }; console.log(stringify(obj)) // 'b=bar'
makes sense to me! this is a bug for sure
thanks for the contribution 💙
This PR makes sure undefined values are omitted when using stringify.
Solves: #46
For example: