UNPKG

resume-client-socket.io

Version:

Resume Client API for Socket.IO and Node.JS - Medical Speech to Summarized Text

16 lines (13 loc) 319 B
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); };