read-next-line
Version:
Reads text lines from stream
22 lines (17 loc) • 440 B
JavaScript
// CommonJS module entry point
class ReadNextLine {
constructor(stream) {
this.
}
async readLine() {
if (!this.
// Dynamically import the ESM ReadNextLine class.
const {ReadNextLine: ESMReadNextLine} = await import('./read-next-line.js');
this.
}
return this.
}
}
module.exports = {ReadNextLine};