mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-21 04:18:36 -05:00
30b2756137
git-subtree-dir: accounts git-subtree-mainline:fd66380082git-subtree-split:e55b8ae2f4
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
/**
|
|
* Asserts wheter 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
|
|
}
|