UNPKG

nodulator

Version:

Complete NodeJS Framework for Restfull APIs

13 lines (10 loc) 304 B
module.exports = ComQuitPacket; function ComQuitPacket(sql) { 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); };