Your Name 056619c27f null
2024-03-15 14:39:48 +08:00

28 lines
492 B
JavaScript

var through = require('through2').obj
var tokenize = require('./index')
module.exports = createStream
function createStream(opt) {
var generator = tokenize(opt)
return through(write, end)
function write(chunk, _, next) {
flush(this, chunk)
next()
}
function end() {
flush(this, null)
this.push(null)
}
function flush(stream, chunk) {
var tokens = generator(chunk)
for (var i = 0; i < tokens.length; i++) {
stream.push(tokens[i])
}
}
}