Removed juusto rps (because I have one)
This commit is contained in:
parent
6379ecdaf5
commit
102963c5b7
933 changed files with 242781 additions and 356 deletions
15
node_modules/mysql/lib/protocol/packets/LocalDataFilePacket.js
generated
vendored
Normal file
15
node_modules/mysql/lib/protocol/packets/LocalDataFilePacket.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue