How do I remove the newline from this code:?
socket.on('data', function(data){ console.log('Data in server, sending to handle()'); worker.handle(data, socket); }); Worker.handle():
exports.handle = function handle(command, socket) { console.log('Data sent to handle()'); command = command.toString(); console.log(command); ? Any help will be very appreciated! console.log(command);
Edit:
I am getting this output: test data [newline]
test data [newline] Edit 2: Here
Here is the continuing code:
if (command === 'look') { // stuff } if (command === 'login') { // stuff Edit 3: I solved it myself with
worker.handle(data.replace(/[\n\r]/g, ''), socket);