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