lix-website/themes/lix/assets/bootstrap/node_modules/postcss-html/template-parse.js

15 lines
304 B
JavaScript
Raw Permalink Normal View History

2024-04-27 03:39:10 +00:00
"use strict";
const TemplateParser = require("./template-parser");
const Input = require("postcss/lib/input");
function templateParse (css, opts) {
const input = new Input(css, opts);
const parser = new TemplateParser(input);
parser.parse();
return parser.root;
}
module.exports = templateParse;