Jsome
Jsome copied to clipboard
Did not display undefined properties in objects
const jsome = require('jsome')
const obj = {
a: 1,
b: "str",
c: undefined,
d: null
}
console.log( jsome.getColoredString(obj) )
Output is:
{
a: 1,
b: "str",
d: null
}