Urara-Blog/node_modules/.pnpm-store/v3/files/f3/4e4c6d08c4adfb2ffc3b0d0c9142d25dbd8608cd2231bfb3b26fd3de97dbf437e83fddaef3a6f62a01b0f831764bdac532926cecb8292f1762b5984e7d92d9
2022-08-14 01:14:53 +08:00

16 lines
285 B
Text

/**
* @typedef {import('micromark-util-types').Event} Event
*/
import {subtokenize} from 'micromark-util-subtokenize'
/**
* @param {Event[]} events
* @returns {Event[]}
*/
export function postprocess(events) {
while (!subtokenize(events)) {
// Empty
}
return events
}