mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 16:32:58 +00:00
16 lines
390 B
JavaScript
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 };
|