homebridge-bondbridge
Version:
Plugin to integrate BondBridge units by Bond to Homekit
17 lines (13 loc) • 353 B
JavaScript
;
// Description:
// Extracts a key from an object given a value.
//
// @param obj - The object to get the key from.
// @param value - The value to find.
//
// @returns key or undefined
//
var extractKeyValue = function (obj, value) {
return Object.keys(obj)[Object.values(obj).indexOf(value)];
}
module.exports = extractKeyValue;