I have an object, sometimes it is empty like so {}
other times it will have properties that are set to null.
{
property1: null,
property2: null
}
How can I determine if ALL the properties within this object is null? If they are all null then return false.
At the moment I'm using lodash to check for the first case where the object is simply {}
empty. But I also need to cover the second case.
if (isEmpty(this.report.device)) {
return false;
}
return true;