文件操作 - shim.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/atom/resources/app/apm/node_modules/es5-ext/math/imul/shim.js
编辑文件内容
/* eslint no-bitwise: "off" */ // Thanks: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference // /Global_Objects/Math/imul "use strict"; module.exports = function (val1, val2) { var xh = (val1 >>> 16) & 0xffff , xl = val1 & 0xffff , yh = (val2 >>> 16) & 0xffff , yl = val2 & 0xffff; // The shift by 0 fixes the sign on the high part // the final |0 converts the unsigned value into a signed value return (xl * yl + (((xh * yl + xl * yh) << 16) >>> 0)) | 0; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件