文件操作 - index.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/csso/lib/clean/index.js
编辑文件内容
import { walk } from 'css-tree'; import Atrule from './Atrule.js'; import Comment from './Comment.js'; import Declaration from './Declaration.js'; import Raw from './Raw.js'; import Rule from './Rule.js'; import TypeSelector from './TypeSelector.js'; import WhiteSpace from './WhiteSpace.js'; const handlers = { Atrule, Comment, Declaration, Raw, Rule, TypeSelector, WhiteSpace }; export default function(ast, options) { walk(ast, { leave(node, item, list) { if (handlers.hasOwnProperty(node.type)) { handlers[node.type].call(this, node, item, list, options); } } }); };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件