文件操作 - lazy.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/atom/resources/app/apm/node_modules/es5-ext/promise/lazy.js
编辑文件内容
"use strict"; var isFunction = require("../function/is-function"); module.exports = function (executor) { var Constructor; if (isFunction(this)) { Constructor = this; } else if (typeof Promise === "function") { Constructor = Promise; } else { throw new TypeError("Could not resolve Promise constuctor"); } var lazyThen; var promise = new Constructor(function (resolve, reject) { lazyThen = function (onSuccess, onFailure) { if (!hasOwnProperty.call(this, "then")) { // Sanity check throw new Error("Unexpected (inherited) lazy then invocation"); } try { executor(resolve, reject); } catch (reason) { reject(reason); } delete this.then; return this.then(onSuccess, onFailure); }; }); return Object.defineProperty(promise, "then", { configurable: true, writable: true, value: lazyThen }); };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件