mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-18 11:00:03 -05:00
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
/**
|
|
* Asserts whether the given object is empty
|
|
* @param {Object} obj Object to be checked
|
|
* @returns {Boolean}
|
|
*/
|
|
export function isObjectEmpty (obj) {
|
|
return Object.keys(obj).length === 0 && obj.constructor === Object
|
|
}
|