/** * @typedef {import('nlcst').Root} Root */ import {toString} from 'nlcst-to-string' /** @type {import('unified').Plugin} */ export default function retextStringify() { Object.assign(this, {Compiler}) } /** @type {import('unified').CompilerFunction} */ function Compiler(tree) { return toString(tree) }