UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

15 lines (10 loc) 325 B
"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;