File "object-is-empty.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/object-is-empty.js
File
size: 249 B (249 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
/**
* Check if object is empty
*
* @param {Object} obj The object to check
* @return {boolean} If the object is empty
*/
export default ( obj ) => ( obj && Object.keys( obj ).length === 0 && Object.getPrototypeOf( obj ) === Object.prototype );