UNPKG

@quadratclown/dbus-next

Version:
24 lines (22 loc) 536 B
const Buffer = require('safe-buffer').Buffer; module.exports = function readOneLine (stream, cb) { const bytes = []; function readable () { while (1) { const buf = stream.read(1); if (!buf) return; const b = buf[0]; if (b === 0x0a) { try { cb(Buffer.from(bytes)); } catch (error) { stream.emit('error', error); } stream.removeListener('readable', readable); return; } bytes.push(b); } } stream.on('readable', readable); };