UNPKG

@zandor300/jsmodbus

Version:

Implementation for the Serial/TCP Modbus protocol.

12 lines (11 loc) 287 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ModbusClientResponseHandler { constructor() { this._buffer = Buffer.alloc(0); } shift() { return this._messages.shift(); } } exports.default = ModbusClientResponseHandler;