文件操作 - canExplode.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/postcss-merge-longhand/src/lib/canExplode.js
编辑文件内容
'use strict'; const isCustomProp = require('./isCustomProp'); const globalKeywords = new Set(['inherit', 'initial', 'unset', 'revert']); /** @type {(prop: import('postcss').Declaration, includeCustomProps?: boolean) => boolean} */ module.exports = (prop, includeCustomProps = true) => { if ( !prop.value || (includeCustomProps && isCustomProp(prop)) || (prop.value && globalKeywords.has(prop.value.toLowerCase())) ) { return false; } return true; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件