文件操作 - element.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/htmlparser2/node_modules/domhandler/lib/element.js
编辑文件内容
// DOM-Level-1-compliant structure var NodePrototype = require('./node'); var ElementPrototype = module.exports = Object.create(NodePrototype); var domLvl1 = { tagName: "name" }; Object.keys(domLvl1).forEach(function(key) { var shorthand = domLvl1[key]; Object.defineProperty(ElementPrototype, key, { get: function() { return this[shorthand] || null; }, set: function(val) { this[shorthand] = val; return val; } }); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件