UNPKG

mysql

Version:

A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.

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); };