• File: LocalDataFilePacket.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/mysql/lib/protocol/packets/LocalDataFilePacket.js
  • Date Modified: 10/26/1985 3:15 PM
  • File size: 319 bytes
  • MIME-type: text/plain
  • Charset: utf-8
module.exports = LocalDataFilePacket;

/**
 * Create a new LocalDataFilePacket
 * @constructor
 * @param {Buffer} data The data contents of the packet
 * @public
 */
function LocalDataFilePacket(data) {
  this.data = data;
}

LocalDataFilePacket.prototype.write = function(writer) {
  writer.writeBuffer(this.data);
};