Files
DeviceManager/node_modules/postcss-html/lib/syntax/syntaxes.js

16 lines
390 B
JavaScript

"use strict";
const postcssParse = require("postcss/lib/parse");
const postcssStringify = require("postcss/lib/stringify");
const postcssSafeParser = require("postcss-safe-parser");
const cssSyntax = {
parse: postcssParse,
stringify: postcssStringify,
};
const cssSafeSyntax = {
parse: postcssSafeParser,
stringify: postcssStringify,
};
module.exports = { cssSyntax, cssSafeSyntax };