javascript - lodash check object properties has values - Stack Overflow

PHOTO EMBED

Thu Sep 08 2022 14:51:25 GMT+0000 (Coordinated Universal Time)

Saved by @avivdaniel #javascript

const profile = {
  name: 'John',
  age: ''
};

const emptyProfile = _.values(profile).every(_.isEmpty);

console.log(emptyProfile); // returns false
content_copyCOPY

https://stackoverflow.com/questions/44962321/lodash-check-object-properties-has-values