文件操作 - decode_codepoint.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js
编辑文件内容
var decodeMap = require("../maps/decode.json"); module.exports = decodeCodePoint; // modified version of https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119 function decodeCodePoint(codePoint) { if ((codePoint >= 0xd800 && codePoint <= 0xdfff) || codePoint > 0x10ffff) { return "\uFFFD"; } if (codePoint in decodeMap) { codePoint = decodeMap[codePoint]; } var output = ""; if (codePoint > 0xffff) { codePoint -= 0x10000; output += String.fromCharCode(((codePoint >>> 10) & 0x3ff) | 0xd800); codePoint = 0xdc00 | (codePoint & 0x3ff); } output += String.fromCharCode(codePoint); return output; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件