zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
20 lines • 714 B
JavaScript
;
/* eslint-disable @typescript-eslint/explicit-function-return-type */
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.nwkKey = void 0;
const assert_1 = __importDefault(require("assert"));
const struct_1 = require("../struct");
/**
* Creates a network key struct.
*
* @param data Data to initialize structure with.
*/
const nwkKey = (data) => {
(0, assert_1.default)(!Array.isArray(data));
return struct_1.Struct.new().member('uint8array', 'key', 16).build(data);
};
exports.nwkKey = nwkKey;
//# sourceMappingURL=nwk-key.js.map