文件操作 - double-indexed-kv.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/superjson/dist/double-indexed-kv.js
编辑文件内容
export class DoubleIndexedKV { constructor() { this.keyToValue = new Map(); this.valueToKey = new Map(); } set(key, value) { this.keyToValue.set(key, value); this.valueToKey.set(value, key); } getByKey(key) { return this.keyToValue.get(key); } getByValue(value) { return this.valueToKey.get(value); } clear() { this.keyToValue.clear(); this.valueToKey.clear(); } } //# sourceMappingURL=double-indexed-kv.js.map
修改文件时间
将文件时间修改为当前时间的前一年
删除文件