15 lines
325 B
JavaScript
15 lines
325 B
JavaScript
|
"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;
|