文件操作 - removeStyleElement.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/svgo/plugins/removeStyleElement.js
编辑文件内容
'use strict'; const { detachNodeFromParent } = require('../lib/xast.js'); exports.name = 'removeStyleElement'; exports.description = 'removes <style> element (disabled by default)'; /** * Remove <style>. * * https://www.w3.org/TR/SVG11/styling.html#StyleElement * * @author Betsy Dupuis * * @type {import('./plugins-types').Plugin<'removeStyleElement'>} */ exports.fn = () => { return { element: { enter: (node, parentNode) => { if (node.name === 'style') { detachNodeFromParent(node, parentNode); } }, }, }; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件