UNPKG

lib-comfoair

Version:

Library to communicate with Zehnder ComfoAirQ ventilation unit through the ComfoControl gateway

11 lines (10 loc) 296 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeArrayElement = removeArrayElement; function removeArrayElement(array, element) { const index = array.indexOf(element); if (index !== -1) { array.splice(index, 1); } return array; }