UNPKG
@zandor300/jsmodbus
Version:
latest (4.5.0)
4.5.0
4.4.0
4.3.8
4.3.7
4.3.6
4.3.5
4.3.4
4.3.3
4.3.2
4.3.1
4.3.0
4.2.0
4.1.2
4.1.1
4.1.0
4.0.16
4.0.15
4.0.14
4.0.13
4.0.12
Implementation for the Serial/TCP Modbus protocol.
@zandor300/jsmodbus
/
dist
/
client-response-handler.js
12 lines
(11 loc)
•
287 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
ModbusClientResponseHandler
{
constructor
(
) {
this
.
_buffer
=
Buffer
.
alloc
(
0
); }
shift
(
) {
return
this
.
_messages
.
shift
(); } }
exports
.
default
=
ModbusClientResponseHandler
;