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

15 lines
325 B
JavaScript
Raw Normal View History

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