iobroker.hue
Version:
Connects Philips Hue LED Bulbs, Friends of Hue LED Lamps and Stripes and other SmartLink capable Devices (LivingWhites, some LivingColors) via Philips Hue Bridges
11 lines • 346 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isObject = isObject;
/**
* Tests whether the given variable is a real object and not an Array
* @param it The variable to test
*/
function isObject(it) {
return Object.prototype.toString.call(it) === '[object Object]';
}
//# sourceMappingURL=tools.js.map