UNPKG

@smartface/emulator-dispatcher

Version:

Handles Emulator Dispatcher Part of SmartfaceCloud

8 lines (7 loc) 198 B
module.exports = function isEmptyObject(obj) { var isEmpty = true; if (obj && typeof obj === "object" && Object.keys(obj).length > 0) { isEmpty = false; } return isEmpty; };