mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 17:07:49 +08:00
4 lines
130 B
TypeScript
4 lines
130 B
TypeScript
|
export default function isEmptyObject(object = {}) {
|
||
|
return Object.keys(object).length === 0 && object.constructor === Object
|
||
|
}
|