UNPKG

214 BJavaScriptView Raw
1class Packet {
2 constructor () {
3 this.cmd = null
4 this.retain = false
5 this.qos = 0
6 this.dup = false
7 this.length = -1
8 this.topic = null
9 this.payload = null
10 }
11}
12
13module.exports = Packet