forked from lix-project/lix-website
12 lines
178 B
JavaScript
12 lines
178 B
JavaScript
|
export default postprocess
|
||
|
|
||
|
import subtokenize from './util/subtokenize.mjs'
|
||
|
|
||
|
function postprocess(events) {
|
||
|
while (!subtokenize(events)) {
|
||
|
// Empty
|
||
|
}
|
||
|
|
||
|
return events
|
||
|
}
|