UNPKG

resume-client-socket.io

Version:

Resume Client API for Socket.IO and Node.JS - Medical Speech to Summarized Text

13 lines (10 loc) 301 B
module.exports = ComQuitPacket; function ComQuitPacket() { this.command = 0x01; } ComQuitPacket.prototype.parse = function parse(parser) { this.command = parser.parseUnsignedNumber(1); }; ComQuitPacket.prototype.write = function write(writer) { writer.writeUnsignedNumber(1, this.command); };