文件操作 - time.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/@vue/devtools-api/lib/cjs/time.js
编辑文件内容
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.now = exports.isPerformanceSupported = void 0; let supported; let perf; function isPerformanceSupported() { var _a; if (supported !== undefined) { return supported; } if (typeof window !== 'undefined' && window.performance) { supported = true; perf = window.performance; } else if (typeof globalThis !== 'undefined' && ((_a = globalThis.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) { supported = true; perf = globalThis.perf_hooks.performance; } else { supported = false; } return supported; } exports.isPerformanceSupported = isPerformanceSupported; function now() { return isPerformanceSupported() ? perf.now() : Date.now(); } exports.now = now;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件