Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 | 37x 37x 417x 417x 417x | const { constructTree, tokenize } = require('hyntax-yx');
module.exports = (code) => {
// const selfClosingTag = code.replace(/{{[^{^}]+}}/g, '').match(/(?<=\<)[a-z|\.|-]+(?=[^><]+\/>)/g)
const { tokens } = tokenize(code)
const { ast } = constructTree(tokens)
return ast
} |