Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
nodejs
/
Notifications_Imali_API
/
node_modules
/
mysql
/
lib
/
protocol
/
packets
:
LocalDataFilePacket.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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); };