芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/postcss-merge-longhand/src/index.js
'use strict'; const processors = require('./lib/decl'); /** * @type {import('postcss').PluginCreator
} * @return {import('postcss').Plugin} */ function pluginCreator() { return { postcssPlugin: 'postcss-merge-longhand', OnceExit(css) { css.walkRules((rule) => { processors.forEach((p) => { p.explode(rule); p.merge(rule); }); }); }, }; } pluginCreator.postcss = true; module.exports = pluginCreator;