文件操作 - removeXMLProcInst.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/svgo/plugins/removeXMLProcInst.js
编辑文件内容
'use strict'; const { detachNodeFromParent } = require('../lib/xast.js'); exports.name = 'removeXMLProcInst'; exports.description = 'removes XML processing instructions'; /** * Remove XML Processing Instruction. * * @example * <?xml version="1.0" encoding="utf-8"?> * * @author Kir Belevich * * @type {import('./plugins-types').Plugin<'removeXMLProcInst'>} */ exports.fn = () => { return { instruction: { enter: (node, parentNode) => { if (node.name === 'xml') { detachNodeFromParent(node, parentNode); } }, }, }; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件