zwave-js
Version:
Z-Wave driver written entirely in JavaScript/TypeScript
15 lines • 521 B
JavaScript
import { FunctionType } from "@zwave-js/serial";
// Test mock for isFunctionSupported to control which commands are getting used
export function isFunctionSupported_NoBridge(fn) {
switch (fn) {
case FunctionType.SendDataBridge:
case FunctionType.SendDataMulticastBridge:
return false;
}
return true;
}
// Test mock for isFunctionSupported to control which commands are getting used
export function isFunctionSupported_All() {
return true;
}
//# sourceMappingURL=fixtures.js.map