文件操作 - grid-start.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/autoprefixer/lib/hacks/grid-start.js
编辑文件内容
let Declaration = require('../declaration') class GridStart extends Declaration { /** * Do not add prefix for unsupported value in IE */ check(decl) { let value = decl.value return !value.includes('/') && !value.includes('span') } /** * Return a final spec property */ normalize(prop) { return prop.replace('-start', '') } /** * Change property name for IE */ prefixed(prop, prefix) { let result = super.prefixed(prop, prefix) if (prefix === '-ms-') { result = result.replace('-start', '') } return result } } GridStart.names = ['grid-row-start', 'grid-column-start'] module.exports = GridStart
修改文件时间
将文件时间修改为当前时间的前一年
删除文件