您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
挂载到window下一级属性集合-常用工具函数
当前为
// ==UserScript== // @name GlobalTools // @namespace http://tampermonkey.net/ // @version 0.1.9 // @description 挂载到window下一级属性集合-常用工具函数 // @author Enjoy_li // @match *://*/* // @match file:///* // @homepage https://greasyfork.org/zh-CN/scripts/468302-%E5%B7%A5%E5%85%B7%E5%87%BD%E6%95%B0tls // @license MIT // @icon https://foruda.gitee.com/avatar/1671100286067517749/4867929_enjoy_li_1671100285.png!avatar60 // @grant none // ==/UserScript== /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ 728: /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(202)["default"]); function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ module.exports = _regeneratorRuntime = function _regeneratorRuntime() { return exports; }, module.exports.__esModule = true, module.exports["default"] = module.exports; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return { value: void 0, done: !0 }; } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator["return"] && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable || "" === iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } throw new TypeError(_typeof(iterable) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, "catch": function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; } module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ 202: /***/ ((module) => { function _typeof(obj) { "@babel/helpers - typeof"; return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj); } module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ 170: /***/ ((module, __unused_webpack_exports, __webpack_require__) => { // TODO(Babel 8): Remove this file. var runtime = __webpack_require__(728)(); module.exports = runtime; // Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736= try { regeneratorRuntime = runtime; } catch (accidentalStrictMode) { if (typeof globalThis === "object") { globalThis.regeneratorRuntime = runtime; } else { Function("r", "regeneratorRuntime = r")(runtime); } } /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/compat get default export */ /******/ (() => { /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = (module) => { /******/ var getter = module && module.__esModule ? /******/ () => (module['default']) : /******/ () => (module); /******/ __webpack_require__.d(getter, { a: getter }); /******/ return getter; /******/ }; /******/ })(); /******/ /******/ /* webpack/runtime/define property getters */ /******/ (() => { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = (exports, definition) => { /******/ for(var key in definition) { /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ (() => { /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) /******/ })(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be in strict mode. (() => { "use strict"; ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/typeof.js function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/toPrimitive.js function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/defineProperty.js function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/slicedToArray.js function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/iterableToArray.js function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } ;// CONCATENATED MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } // EXTERNAL MODULE: ./node_modules/.pnpm/registry.npmjs.org+@[email protected]/node_modules/@babel/runtime/regenerator/index.js var regenerator = __webpack_require__(170); var regenerator_default = /*#__PURE__*/__webpack_require__.n(regenerator); ;// CONCATENATED MODULE: ./src/GlobalTools.js function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = GlobalTools_unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } function GlobalTools_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return GlobalTools_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return GlobalTools_arrayLikeToArray(o, minLen); } function GlobalTools_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } run(window); function run(win) { getLogObjectValue(['$0', 'temp1']); windowProxy(); var tools = { backPrototype: backPrototype, createPlainFile: createPlainFile, getRegMobile: getRegMobile, phoneFormat: phoneFormat, getRegName: getRegName, getRegEmail: getRegEmail, getRegIDCard: getRegIDCard, getQuery: getQuery, toSearch: toSearch, transformThousandth: transformThousandth, deleteProperty: deleteProperty, asyncRequire: asyncRequire, transformData: transformData, previewFile: previewFile, dateUtil: dateUtil, toWithOpener: toWithOpener, downloadFile: downloadFile, base64ToBlob: base64ToBlob, base64ImgtoFile: base64ImgtoFile, isHasBtnPower: isHasBtnPower, getBrowerEnv: getBrowerEnv, formatReportDataToStr: formatReportDataToStr, copyStrToClipboard: copyStrToClipboard, getPropertiesOfObj: getPropertiesOfObj, lgd: lgd, lgd0: lgd0, lgdt1: lgdt1, getPrototypeChainOfObject: getPrototypeChainOfObject, getLogObjectValue: getLogObjectValue }; function getPrototypeChainOfObject(Obj) { /** @描述 对象原型链 */ var idx = 0; var str = "".concat(Obj.name || '参数', "\u7684\u539F\u578B\u94FE\u662F\uFF1A "); next(Obj); return str; /** @描述 递归 */ function next(obj) { var _ObjType$match; var ObjType = Object.toLocaleString.call(obj); var ObjFlag = ((_ObjType$match = ObjType.match(/^\[object ([a-zA-Z]+)\]/)) === null || _ObjType$match === void 0 ? void 0 : _ObjType$match[1]) || _typeof(ObjType); str += "\u7B2C ".concat(idx, " \u7EA7\u3010").concat(ObjFlag, "\u3011.__proto__ \u25B6\uFE0F "); idx++; if (obj.__proto__) { next(obj.__proto__); } else { str += "\u7B2C ".concat(idx, " \u7EA7\u3010null\u3011"); } } } function lgdt1() { var _console; for (var _len = arguments.length, rest = new Array(_len), _key = 0; _key < _len; _key++) { rest[_key] = arguments[_key]; } /** @描述 以对象形式打印 $0 */ (_console = console).log.apply(_console, ["temp1 ==%O", temp1].concat(rest)); } function lgd() { var _console3; for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { args[_key2] = arguments[_key2]; } /** @描述 以对象形式打印 temp1 */ var desc = args[0], rest = args.slice(1); if (rest.length && typeof desc === 'string') { var _console2; return (_console2 = console).log.apply(_console2, ["".concat(desc, " %O")].concat(_toConsumableArray(rest))); } (_console3 = console).log.apply(_console3, ["%O"].concat(args)); } function lgd0() { var _console4; for (var _len3 = arguments.length, rest = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) { rest[_key3] = arguments[_key3]; } /** @描述 以对象形式打印 $0 */ (_console4 = console).log.apply(_console4, ["$0 ==%O", $0].concat(rest)); } function backPrototype(resourceObj) { /** * @description 对象原型链:继承谁的属性和方法 * @param {*} resourceObj * @returns {*} string */ var str = ''; next(resourceObj); str = str + 'null'; console.log("%c \u8BE5\u5BF9\u8C61\u539F\u578B\u94FE\u662F\uFF1A", 'color:red', str); return str; function next(obj) { var _ObjType$match2; var ObjType = Object.toLocaleString.call(obj); var ObjFlag = ((_ObjType$match2 = ObjType.match(/^\[object ([a-zA-Z]+)\]/)) === null || _ObjType$match2 === void 0 ? void 0 : _ObjType$match2[1]) || '无'; str = str + ObjFlag + ' + .__proto__ >> '; if (obj.__proto__) { next(obj.__proto__); } } } function createPlainFile() { var content = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : { a: 'a' }; var name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'name'; /** * @description 创建文本文件 * @param {string} [content={ a: 'a' }] * @param {string} [name='name'] */ // 下载保存json文件 var eleLink = document.createElement("a"); eleLink.download = name + '.json'; // 字符内容转变成blob地址 var data = JSON.stringify(content, undefined, 4); var blob = new Blob([data], { type: "text/json" }); eleLink.href = URL.createObjectURL(blob); // 触发点击 eleLink.click(); // 然后移除 } function getRegMobile() { /** @描述 正则 - 手机号 */ return /^1[2|3|4|5|6|7|8|9][\d]{9}$/; } function phoneFormat() { var phone = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; /** @描述 格式化 - 手机号 */ if (!phone || !/^(?:(?:\+|00)86)?1[3-9]\d{9}$/.test(phone)) return; phone = phone.replace(/\D/g, '').slice(0, 11); phone = phone.replace(/^(\d{3})/, '$1 ').replace(/(\d{4})/, '$1 ').replace(/[\s]+$/, ''); return phone; } function getRegName() { /** @描述 正则 - 姓名 */ return /^[0-9|A-Za-z|\u4e00-\u9fa5|\s]+$/; } function getRegEmail() { /** @描述 正则 - 邮箱 */ return /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/i; } function getRegIDCard() { /** @描述 正则 - 大陆身份证号码 */ return /^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$|^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/; } function getQuery() { var search = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : window.location.search; /** @描述 获取 url 参数 */ var query = {}; search.substr(1).split('&').forEach(function (str) { var strArr = str.split('='); var key = strArr[0]; if (!key) return; var val = decodeURIComponent(strArr[1]); try { val = JSON.parse(val); } catch (err) {} query[key] = val; }); return query; } function toSearch() { var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; /** @描述 转换成 url search */ var arr = Object.keys(obj).map(function (key) { var val = obj[key]; if (typeof val !== 'string') { try { val = JSON.stringify(val); } catch (err) { console.error(err); } } return "".concat(key, "=").concat(encodeURIComponent(val)); }); return '?' + arr.join('&'); } function transformThousandth(value, fixed) { /** * 格式化金额 千分符 * @param value * @param fixed */ var needFixed = fixed != null; var num = Number(value); if (isNaN(num)) { return needFixed ? 0 .toFixed(fixed) : '0'; } // return (needFixed ? num.toFixed(fixed) : num.toString()).replace(/(\d{1,3})(?=(\d{3})+(?:$|\.))/g, '$1,') var str = needFixed ? num.toFixed(fixed) : num.toString(); var arr = str.split('.'); var result = arr[0] ? arr[0].replace(/(?=(?!\b)(\d{3})+$)/g, ',') : '0'; if (arr[1] != null) { result += ".".concat(arr[1]); } return result; } function deleteProperty() { var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; var v = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [undefined, null, '']; /** * 删除指定值的属性 * @param obj */ var res = {}; var isArray = Array.isArray(v); for (var key in obj) { if (isArray) { if (!v.includes(obj[key])) res[key] = obj[key]; } else { if (obj[key] !== v) res[key] = obj[key]; } } return res; } function asyncRequire(url, name, type) { /** * 通过插入标签以加载 js/css 文件 * @param {String} url 需要载入的 js/css url * @param {String} name 文件载入后挂载到 window 下的变量名 * @param {String} type 文件类型 默认取后缀名 */ return new Promise(function (resolve, reject) { var head = document.head || document.getElementsByTagName('head')[0] || document.body; var filePath = url.split('?')[0]; var ext = filePath.substring(filePath.lastIndexOf('.') + 1); if (document.getElementById("async-require-".concat(name || 'unknown'))) { return resolve(name ? window[name] : 'loaded'); } var element; if (ext == 'js' || type == 'js') { element = document.createElement('script'); element.src = url; element.onload = function (e) { return resolve(name ? window[name] : e); }; } else if (ext == 'css' || type == 'css') { element = document.createElement('link'); element.rel = 'stylesheet'; element.type = 'text/css'; element.href = url; element.onload = resolve; } else { return console.warn('好像有点不对劲...请指定文件类型: js | css'); } element.id = "async-require-".concat(name); element.onerror = reject; head.appendChild(element); }); } function transformData(sourceData, relation) { /** * 返回数据 * @param {Array} sourceData 原数组 * @param {Array} 映射字段 */ return sourceData.map(function (item) { var _relation = _slicedToArray(relation, 2), key = _relation[0], name = _relation[1]; return { label: item[name], value: item[key] }; }); } function previewFile(fileUrl) { /** * 在线预览文件 * @param {String} fileUrl 静态资源地址 */ var link = document.createElement('a'); link.href = fileUrl; var ext = (link.pathname.split('.')[1] || '').toLowerCase(); var allowedExt = { bmp: 1, gif: 1, jpg: 1, jpeg: 1, png: 1, apng: 1, webp: 1, htm: 1, html: 1, pdf: 1 }; if (ext && allowedExt[ext]) { var _window; var url = "https://static.hrwork.com/tools/pdfviewer/index.html?file=".concat(encodeURIComponent(fileUrl)); if ((_window = window) !== null && _window !== void 0 && _window.__ZPA_CRX) { return void dispatchEvent(new CustomEvent('$create_tab', { detail: url })); } window.open(url); } else { alert("\u4E0D\u652F\u6301\u5728\u7EBF\u9884\u89C8\u6B64\u7C7B\u578B(".concat(ext !== null && ext !== void 0 ? ext : '', ")\u6587\u4EF6")); } } function dateUtil() { var time = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : new Date(); /** * 获取特定格式日期 * date: 可以为日期字符串、日期对象,不传参数默认当前系统时间 * format: 输出日期时间格式, 不传参数默认 YYYY-MM-DD HH:mm:ss 格式 * 例: * dateUtil().format() * // 2022-06-16 11:56:02 * * // 不传入日期,默认以当前日期,格式化为特定格式日期 * dateUtil().format('YYYY年MM月DD日 (周W) HH时mm分ss秒') * // 2022年06月16日 (周四) 12时01分51秒 * * // 传入指定日期(string | date),格式化为指定格式日期(string) * dateUtil('2015.7.12').format('YYYY年MM月DD日 HH时mm秒ss分 星期W') * // 2015年07月12日 00时00分00秒 星期三 */ time = typeof time === 'string' ? time.replace(/-/g, '/') : time; var date = isNaN(new Date(time)) ? time : new Date(time); return { date: date, format: format }; function format() { var rule = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'YYYY-MM-DD HH:mm:ss'; var weeks = ['日', '一', '二', '三', '四', '五', '六']; var padStart = function padStart(d) { return (d + '').padStart(2, '0'); }; var M = date.getMonth() + 1 + ''; var D = date.getDate() + ''; var H = date.getHours() + ''; var m = date.getMinutes() + ''; var s = date.getSeconds() + ''; return rule.replace('YYYY', date.getFullYear()).replace('MM', padStart(M)).replace('M', M).replace('DD', padStart(D)).replace('D', D).replace('HH', padStart(H)).replace('H', H).replace('mm', padStart(m)).replace('m', m).replace('ss', padStart(s)).replace('s', s).replace(/W/, weeks[date.getDay()]).replace(/w/, date.getDay()); } } function toWithOpener(href) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; /** * 共享opener跳转 * @param { Object } router 如: * @param { Object } options 如: */ var _options$target = options.target, target = _options$target === void 0 ? '_blank' : _options$target, routes = options.routes; var win = window.open(href, target); // 设置新打开页面的面包屑 if (routes && Array.isArray(routes)) { var cloneRoutes = _toConsumableArray(routes); cloneRoutes.shift(); cloneRoutes[cloneRoutes.length - 1] = _objectSpread(_objectSpread({}, cloneRoutes[cloneRoutes.length - 1]), {}, { a: true, path: '/zhaopintong/' + location.hash }); win.sessionStorage.parent_routes = JSON.stringify(cloneRoutes); } return win; } function downloadFile(href) { var fileName = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; /** * 通过url一键下载图片 * @param { String } href 如: * @param { String } fileName 如: */ if (!href) { return; } var aLink = document.createElement('a'); aLink.download = fileName + Date.now(); aLink.href = href; aLink.click(); } function base64ToBlob(base64Code) { /** * base64转Blob对象 * @param { String } code 如: */ var parts = base64Code.split(';base64,'); var contentType = parts[0].split(':')[1]; var raw = window.atob(parts[1]); var rawLength = raw.length; var uint8Array = new Uint8Array(rawLength); for (var i = 0; i < rawLength; i++) { uint8Array[i] = raw.charCodeAt(i); } return new Blob([uint8Array], { type: contentType }); } function base64ImgtoFile(base64Code) { var filename = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'file'; /** * base64转文件对象 * @param { String } base64Code 如: * @param { String } filename 如: */ var arr = base64Code.split(','); var mime = arr[0].match(/:(.*?);/)[1]; var suffix = mime.split('/')[1]; var bstr = atob(arr[1]); var n = bstr.length; var u8arr = new Uint8Array(n); while (n--) { u8arr[n] = bstr.charCodeAt(n); } return new File([u8arr], "".concat(filename, ".").concat(suffix), { type: mime }); } function isHasBtnPower() { var powerList = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; var code = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; /** * @description 判断角色是否有页面级按钮的权限 * @param {*} [powerList=[]] * @param {string} [code=''] * @returns {*} {boolean} */ if (!code) return false; if (typeof code === 'string') code = [code]; var _iterator = _createForOfIteratorHelper(code), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var _powerList$includes; var value = _step.value; if (powerList !== null && powerList !== void 0 && (_powerList$includes = powerList.includes) !== null && _powerList$includes !== void 0 && _powerList$includes.call(powerList, value)) return true; } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } return false; } function getBrowerEnv() { /** @描述 判断当前浏览器运行环境 */ var userAgent = window.navigator.userAgent.toLowerCase(); var agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; // 是否为支付宝环境 var isAliPay = /alipayclient/.test(userAgent); // 是否为淘宝环境 var isTaoBao = /windvane/.test(userAgent); // 是否为企业微信环境 var isWxWork = /wxwork/.test(userAgent); // 是否为微信环境 var isWeChat = /micromessenger/.test(userAgent) && !isWxWork; // 是否为移动端 var isPhone = agents.some(function (x) { return new RegExp(x.toLocaleLowerCase()).test(userAgent); }); return { isAliPay: isAliPay, isTaoBao: isTaoBao, isWxWork: isWxWork, isWeChat: isWeChat, isPhone: isPhone }; } // function formatReportDataToStr() { var arr = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; var headerLabel = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; /** @描述 格式化报表数据拼接成字符串,以便复制到剪贴板 */ return arr.reduce(function (pre, cur) { return pre + headerLabel.reduceRight(function (pre2, cur2) { return "".concat(cur[cur2.key], "\t").concat(pre2); }, '\n'); }, headerLabel.reduceRight(function (pre, cur) { return "".concat(cur.title, "\t").concat(pre); }, '\n')); } function copyStrToClipboard(value) { /** @描述 把字符串复制到剪贴板 */ var textarea = document.createElement('textarea'); textarea.value = value; document.body.appendChild(textarea); textarea.select(); document.execCommand('Copy'); document.body.removeChild(textarea); } function copyStrToClipboardOfNavigator(_x) { return _copyStrToClipboardOfNavigator.apply(this, arguments); } function _copyStrToClipboardOfNavigator() { _copyStrToClipboardOfNavigator = _asyncToGenerator( /*#__PURE__*/regenerator_default().mark(function _callee(value) { return regenerator_default().wrap(function _callee$(_context) { while (1) switch (_context.prev = _context.next) { case 0: _context.next = 2; return navigator.clipboard.writeText(value); case 2: return _context.abrupt("return", _context.sent); case 3: case "end": return _context.stop(); } }, _callee); })); return _copyStrToClipboardOfNavigator.apply(this, arguments); } function getPropertiesOfObj(_ref) { var _ref$obj = _ref.obj, obj = _ref$obj === void 0 ? {} : _ref$obj, _ref$keys = _ref.keys, keys = _ref$keys === void 0 ? [] : _ref$keys; /** * @描述 获取对象的指定属性集合 * @param {*} { obj = {}, keys = [] } * @returns {*} */ var newObj = {}; keys.forEach(function (key) { newObj[key] = obj[key]; }); return newObj; } /** @描述 定义以对象形式 获取window属性值 */ function getLogObjectValue(arr) { var prefix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; var suffix = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '_o'; var win2 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : win; /** @描述 定义以对象形式 获取window属性值 */ arr.forEach(function (newKey) { Object.defineProperty(win2, "".concat(prefix).concat(newKey).concat(suffix), { get: function get() { return console.log('%O', win2[newKey]); } }); }); } /** @描述 代理window,读取属性时,即打印对象 */ function windowProxy() { var win2 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : win; /** @描述 代理window,读取属性时,即打印对象 */ var result; win2.enjoy_wp = new Proxy(win2, { get: function get(obj, prop) { result = obj[prop]; console.log("\uD83C\uDF8F ".concat(prop, "=%O"), result); return result; } }); } if (win.enjoy_tl) { console.error('win.enjoy_tl已经存在,请使用win.enjoy_tls'); if (!win.enjoy_tls) win.enjoy_tls = tools; return; } win.enjoy_tl = tools; Object.defineProperty(tools, 'fns', { /** @描述 对象下的函数名列表 */get: function get() { return Object.keys(tools); } }); } })(); /******/ })() ;