blob: 735927b3ac8268b7c4a676af376d1f1f63cac3e0 [file] [log] [blame]
module.exports = postprocess
var subtokenize = require('./util/subtokenize')
function postprocess(events) {
while (!subtokenize(events)) {
// Empty
}
return events
}