UNPKG

@rawwee/prettier-plugin-twig-melody

Version:
16 lines (13 loc) 323 B
const prettier = require("prettier"); const { concat } = prettier.doc.builders; const p = (node, path, print) => { return concat([ node.trimLeft ? "{%-" : "{%", " do ", path.call(print, "value"), node.trimRight ? " -%}" : " %}" ]); }; module.exports = { printDoStatement: p };