express/src/helpers/object.js
2024-01-07 12:32:39 +01:00

14 lines
206 B
JavaScript

/**
* Check if object is empty
* @param {Object} obj
*
* @return {Boolean}
*/
export const isEmpty = (obj) => {
if (!obj) {
return true;
}
return Object.keys(obj).length === 0;
};