All files / gogocode-core/src/html-core parse.js

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 5/5

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 737x 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
}