PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/pad/dist/cjs

Просмотр файла: index.cjs.map

{"version":3,"file":"index.cjs","sources":["../../node_modules/clone/clone.js","../../node_modules/defaults/index.js","../../node_modules/wcwidth/combining.js","../../node_modules/wcwidth/index.js","../../src/index.ts"],"sourcesContent":["var clone = (function() {\n'use strict';\n\n/**\n * Clones (copies) an Object using deep copying.\n *\n * This function supports circular references by default, but if you are certain\n * there are no circular references in your object, you can save some CPU time\n * by calling clone(obj, false).\n *\n * Caution: if `circular` is false and `parent` contains circular references,\n * your program may enter an infinite loop and crash.\n *\n * @param `parent` - the object to be cloned\n * @param `circular` - set to true if the object to be cloned may contain\n *    circular references. (optional - true by default)\n * @param `depth` - set to a number if the object is only to be cloned to\n *    a particular depth. (optional - defaults to Infinity)\n * @param `prototype` - sets the prototype to be used when cloning an object.\n *    (optional - defaults to parent prototype).\n*/\nfunction clone(parent, circular, depth, prototype) {\n  var filter;\n  if (typeof circular === 'object') {\n    depth = circular.depth;\n    prototype = circular.prototype;\n    filter = circular.filter;\n    circular = circular.circular\n  }\n  // maintain two arrays for circular references, where corresponding parents\n  // and children have the same index\n  var allParents = [];\n  var allChildren = [];\n\n  var useBuffer = typeof Buffer != 'undefined';\n\n  if (typeof circular == 'undefined')\n    circular = true;\n\n  if (typeof depth == 'undefined')\n    depth = Infinity;\n\n  // recurse this function so we don't reset allParents and allChildren\n  function _clone(parent, depth) {\n    // cloning null always returns null\n    if (parent === null)\n      return null;\n\n    if (depth == 0)\n      return parent;\n\n    var child;\n    var proto;\n    if (typeof parent != 'object') {\n      return parent;\n    }\n\n    if (clone.__isArray(parent)) {\n      child = [];\n    } else if (clone.__isRegExp(parent)) {\n      child = new RegExp(parent.source, __getRegExpFlags(parent));\n      if (parent.lastIndex) child.lastIndex = parent.lastIndex;\n    } else if (clone.__isDate(parent)) {\n      child = new Date(parent.getTime());\n    } else if (useBuffer && Buffer.isBuffer(parent)) {\n      if (Buffer.allocUnsafe) {\n        // Node.js >= 4.5.0\n        child = Buffer.allocUnsafe(parent.length);\n      } else {\n        // Older Node.js versions\n        child = new Buffer(parent.length);\n      }\n      parent.copy(child);\n      return child;\n    } else {\n      if (typeof prototype == 'undefined') {\n        proto = Object.getPrototypeOf(parent);\n        child = Object.create(proto);\n      }\n      else {\n        child = Object.create(prototype);\n        proto = prototype;\n      }\n    }\n\n    if (circular) {\n      var index = allParents.indexOf(parent);\n\n      if (index != -1) {\n        return allChildren[index];\n      }\n      allParents.push(parent);\n      allChildren.push(child);\n    }\n\n    for (var i in parent) {\n      var attrs;\n      if (proto) {\n        attrs = Object.getOwnPropertyDescriptor(proto, i);\n      }\n\n      if (attrs && attrs.set == null) {\n        continue;\n      }\n      child[i] = _clone(parent[i], depth - 1);\n    }\n\n    return child;\n  }\n\n  return _clone(parent, depth);\n}\n\n/**\n * Simple flat clone using prototype, accepts only objects, usefull for property\n * override on FLAT configuration object (no nested props).\n *\n * USE WITH CAUTION! This may not behave as you wish if you do not know how this\n * works.\n */\nclone.clonePrototype = function clonePrototype(parent) {\n  if (parent === null)\n    return null;\n\n  var c = function () {};\n  c.prototype = parent;\n  return new c();\n};\n\n// private utility functions\n\nfunction __objToStr(o) {\n  return Object.prototype.toString.call(o);\n};\nclone.__objToStr = __objToStr;\n\nfunction __isDate(o) {\n  return typeof o === 'object' && __objToStr(o) === '[object Date]';\n};\nclone.__isDate = __isDate;\n\nfunction __isArray(o) {\n  return typeof o === 'object' && __objToStr(o) === '[object Array]';\n};\nclone.__isArray = __isArray;\n\nfunction __isRegExp(o) {\n  return typeof o === 'object' && __objToStr(o) === '[object RegExp]';\n};\nclone.__isRegExp = __isRegExp;\n\nfunction __getRegExpFlags(re) {\n  var flags = '';\n  if (re.global) flags += 'g';\n  if (re.ignoreCase) flags += 'i';\n  if (re.multiline) flags += 'm';\n  return flags;\n};\nclone.__getRegExpFlags = __getRegExpFlags;\n\nreturn clone;\n})();\n\nif (typeof module === 'object' && module.exports) {\n  module.exports = clone;\n}\n","var clone = require('clone');\n\nmodule.exports = function(options, defaults) {\n  options = options || {};\n\n  Object.keys(defaults).forEach(function(key) {\n    if (typeof options[key] === 'undefined') {\n      options[key] = clone(defaults[key]);\n    }\n  });\n\n  return options;\n};","module.exports = [\n    [ 0x0300, 0x036F ], [ 0x0483, 0x0486 ], [ 0x0488, 0x0489 ],\n    [ 0x0591, 0x05BD ], [ 0x05BF, 0x05BF ], [ 0x05C1, 0x05C2 ],\n    [ 0x05C4, 0x05C5 ], [ 0x05C7, 0x05C7 ], [ 0x0600, 0x0603 ],\n    [ 0x0610, 0x0615 ], [ 0x064B, 0x065E ], [ 0x0670, 0x0670 ],\n    [ 0x06D6, 0x06E4 ], [ 0x06E7, 0x06E8 ], [ 0x06EA, 0x06ED ],\n    [ 0x070F, 0x070F ], [ 0x0711, 0x0711 ], [ 0x0730, 0x074A ],\n    [ 0x07A6, 0x07B0 ], [ 0x07EB, 0x07F3 ], [ 0x0901, 0x0902 ],\n    [ 0x093C, 0x093C ], [ 0x0941, 0x0948 ], [ 0x094D, 0x094D ],\n    [ 0x0951, 0x0954 ], [ 0x0962, 0x0963 ], [ 0x0981, 0x0981 ],\n    [ 0x09BC, 0x09BC ], [ 0x09C1, 0x09C4 ], [ 0x09CD, 0x09CD ],\n    [ 0x09E2, 0x09E3 ], [ 0x0A01, 0x0A02 ], [ 0x0A3C, 0x0A3C ],\n    [ 0x0A41, 0x0A42 ], [ 0x0A47, 0x0A48 ], [ 0x0A4B, 0x0A4D ],\n    [ 0x0A70, 0x0A71 ], [ 0x0A81, 0x0A82 ], [ 0x0ABC, 0x0ABC ],\n    [ 0x0AC1, 0x0AC5 ], [ 0x0AC7, 0x0AC8 ], [ 0x0ACD, 0x0ACD ],\n    [ 0x0AE2, 0x0AE3 ], [ 0x0B01, 0x0B01 ], [ 0x0B3C, 0x0B3C ],\n    [ 0x0B3F, 0x0B3F ], [ 0x0B41, 0x0B43 ], [ 0x0B4D, 0x0B4D ],\n    [ 0x0B56, 0x0B56 ], [ 0x0B82, 0x0B82 ], [ 0x0BC0, 0x0BC0 ],\n    [ 0x0BCD, 0x0BCD ], [ 0x0C3E, 0x0C40 ], [ 0x0C46, 0x0C48 ],\n    [ 0x0C4A, 0x0C4D ], [ 0x0C55, 0x0C56 ], [ 0x0CBC, 0x0CBC ],\n    [ 0x0CBF, 0x0CBF ], [ 0x0CC6, 0x0CC6 ], [ 0x0CCC, 0x0CCD ],\n    [ 0x0CE2, 0x0CE3 ], [ 0x0D41, 0x0D43 ], [ 0x0D4D, 0x0D4D ],\n    [ 0x0DCA, 0x0DCA ], [ 0x0DD2, 0x0DD4 ], [ 0x0DD6, 0x0DD6 ],\n    [ 0x0E31, 0x0E31 ], [ 0x0E34, 0x0E3A ], [ 0x0E47, 0x0E4E ],\n    [ 0x0EB1, 0x0EB1 ], [ 0x0EB4, 0x0EB9 ], [ 0x0EBB, 0x0EBC ],\n    [ 0x0EC8, 0x0ECD ], [ 0x0F18, 0x0F19 ], [ 0x0F35, 0x0F35 ],\n    [ 0x0F37, 0x0F37 ], [ 0x0F39, 0x0F39 ], [ 0x0F71, 0x0F7E ],\n    [ 0x0F80, 0x0F84 ], [ 0x0F86, 0x0F87 ], [ 0x0F90, 0x0F97 ],\n    [ 0x0F99, 0x0FBC ], [ 0x0FC6, 0x0FC6 ], [ 0x102D, 0x1030 ],\n    [ 0x1032, 0x1032 ], [ 0x1036, 0x1037 ], [ 0x1039, 0x1039 ],\n    [ 0x1058, 0x1059 ], [ 0x1160, 0x11FF ], [ 0x135F, 0x135F ],\n    [ 0x1712, 0x1714 ], [ 0x1732, 0x1734 ], [ 0x1752, 0x1753 ],\n    [ 0x1772, 0x1773 ], [ 0x17B4, 0x17B5 ], [ 0x17B7, 0x17BD ],\n    [ 0x17C6, 0x17C6 ], [ 0x17C9, 0x17D3 ], [ 0x17DD, 0x17DD ],\n    [ 0x180B, 0x180D ], [ 0x18A9, 0x18A9 ], [ 0x1920, 0x1922 ],\n    [ 0x1927, 0x1928 ], [ 0x1932, 0x1932 ], [ 0x1939, 0x193B ],\n    [ 0x1A17, 0x1A18 ], [ 0x1B00, 0x1B03 ], [ 0x1B34, 0x1B34 ],\n    [ 0x1B36, 0x1B3A ], [ 0x1B3C, 0x1B3C ], [ 0x1B42, 0x1B42 ],\n    [ 0x1B6B, 0x1B73 ], [ 0x1DC0, 0x1DCA ], [ 0x1DFE, 0x1DFF ],\n    [ 0x200B, 0x200F ], [ 0x202A, 0x202E ], [ 0x2060, 0x2063 ],\n    [ 0x206A, 0x206F ], [ 0x20D0, 0x20EF ], [ 0x302A, 0x302F ],\n    [ 0x3099, 0x309A ], [ 0xA806, 0xA806 ], [ 0xA80B, 0xA80B ],\n    [ 0xA825, 0xA826 ], [ 0xFB1E, 0xFB1E ], [ 0xFE00, 0xFE0F ],\n    [ 0xFE20, 0xFE23 ], [ 0xFEFF, 0xFEFF ], [ 0xFFF9, 0xFFFB ],\n    [ 0x10A01, 0x10A03 ], [ 0x10A05, 0x10A06 ], [ 0x10A0C, 0x10A0F ],\n    [ 0x10A38, 0x10A3A ], [ 0x10A3F, 0x10A3F ], [ 0x1D167, 0x1D169 ],\n    [ 0x1D173, 0x1D182 ], [ 0x1D185, 0x1D18B ], [ 0x1D1AA, 0x1D1AD ],\n    [ 0x1D242, 0x1D244 ], [ 0xE0001, 0xE0001 ], [ 0xE0020, 0xE007F ],\n    [ 0xE0100, 0xE01EF ]\n]\n","\"use strict\"\n\nvar defaults = require('defaults')\nvar combining = require('./combining')\n\nvar DEFAULTS = {\n  nul: 0,\n  control: 0\n}\n\nmodule.exports = function wcwidth(str) {\n  return wcswidth(str, DEFAULTS)\n}\n\nmodule.exports.config = function(opts) {\n  opts = defaults(opts || {}, DEFAULTS)\n  return function wcwidth(str) {\n    return wcswidth(str, opts)\n  }\n}\n\n/*\n *  The following functions define the column width of an ISO 10646\n *  character as follows:\n *  - The null character (U+0000) has a column width of 0.\n *  - Other C0/C1 control characters and DEL will lead to a return value\n *    of -1.\n *  - Non-spacing and enclosing combining characters (general category\n *    code Mn or Me in the\n *    Unicode database) have a column width of 0.\n *  - SOFT HYPHEN (U+00AD) has a column width of 1.\n *  - Other format characters (general category code Cf in the Unicode\n *    database) and ZERO WIDTH\n *    SPACE (U+200B) have a column width of 0.\n *  - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF)\n *    have a column width of 0.\n *  - Spacing characters in the East Asian Wide (W) or East Asian\n *    Full-width (F) category as\n *    defined in Unicode Technical Report #11 have a column width of 2.\n *  - All remaining characters (including all printable ISO 8859-1 and\n *    WGL4 characters, Unicode control characters, etc.) have a column\n *    width of 1.\n *  This implementation assumes that characters are encoded in ISO 10646.\n*/\n\nfunction wcswidth(str, opts) {\n  if (typeof str !== 'string') return wcwidth(str, opts)\n\n  var s = 0\n  for (var i = 0; i < str.length; i++) {\n    var n = wcwidth(str.charCodeAt(i), opts)\n    if (n < 0) return -1\n    s += n\n  }\n\n  return s\n}\n\nfunction wcwidth(ucs, opts) {\n  // test for 8-bit control characters\n  if (ucs === 0) return opts.nul\n  if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0)) return opts.control\n\n  // binary search in table of non-spacing characters\n  if (bisearch(ucs)) return 0\n\n  // if we arrive here, ucs is not a combining or C0/C1 control character\n  return 1 +\n      (ucs >= 0x1100 &&\n       (ucs <= 0x115f ||                       // Hangul Jamo init. consonants\n        ucs == 0x2329 || ucs == 0x232a ||\n        (ucs >= 0x2e80 && ucs <= 0xa4cf &&\n         ucs != 0x303f) ||                     // CJK ... Yi\n        (ucs >= 0xac00 && ucs <= 0xd7a3) ||    // Hangul Syllables\n        (ucs >= 0xf900 && ucs <= 0xfaff) ||    // CJK Compatibility Ideographs\n        (ucs >= 0xfe10 && ucs <= 0xfe19) ||    // Vertical forms\n        (ucs >= 0xfe30 && ucs <= 0xfe6f) ||    // CJK Compatibility Forms\n        (ucs >= 0xff00 && ucs <= 0xff60) ||    // Fullwidth Forms\n        (ucs >= 0xffe0 && ucs <= 0xffe6) ||\n        (ucs >= 0x20000 && ucs <= 0x2fffd) ||\n        (ucs >= 0x30000 && ucs <= 0x3fffd)));\n}\n\nfunction bisearch(ucs) {\n  var min = 0\n  var max = combining.length - 1\n  var mid\n\n  if (ucs < combining[0][0] || ucs > combining[max][1]) return false\n\n  while (max >= min) {\n    mid = Math.floor((min + max) / 2)\n    if (ucs > combining[mid][1]) min = mid + 1\n    else if (ucs < combining[mid][0]) max = mid - 1\n    else return true\n  }\n\n  return false\n}\n","/// <reference types='../types/wcwidth.d.ts' />\nimport wcwidth from \"wcwidth\";\n\ninterface WCWidthOptions {\n  control?: number;\n  nul?: number;\n}\n\ninterface Options {\n  /**\n   * The character used to fill the gap.\n   */\n  char?: string;\n  /**\n   * Adjust to hidden terminal color characters.\n   */\n  colors?: boolean;\n  /**\n   * Remove characters from text if length smaller than text length, default to \"false\".\n   */\n  strip?: boolean;\n  /**\n   * An optimization option to disable the usage of the wcwidth package to handle the discovery of characters using more than one column for display.\n   */\n  fixed_width?: boolean;\n  /**\n   * Options passed to the wcwidth package used to calculate the display width of characters using more than one column.\n   */\n  wcwidth_options?: WCWidthOptions;\n}\n\nfunction pad(\n  length: number,\n  text: string | Buffer,\n  options?: string | Options,\n): string;\nfunction pad(\n  text: string | Buffer,\n  length: number,\n  options?: string | Options,\n): string;\nfunction pad(\n  arg1: string | Buffer | number,\n  arg2: string | Buffer | number,\n  options: string | Options = {},\n) {\n  const invert = typeof arg1 === \"number\";\n  let text = invert ? (arg2 as string | Buffer) : arg1;\n  const length = invert ? arg1 : (arg2 as number);\n  if (typeof options === \"string\") {\n    options = { char: options };\n  }\n  if (!options.char) {\n    options.char = \" \";\n  }\n  if (!options.strip) {\n    options.strip = false;\n  }\n  if (typeof text !== \"string\") {\n    text = text.toString();\n  }\n  let textnocolors = null;\n  let pad = \"\";\n  if (options.colors) {\n    // eslint-disable-next-line no-control-regex\n    const escapecolor = /\\x1B\\[(?:[0-9]{1,2}(?:;[0-9]{1,2})?)?[m|K]/g;\n    textnocolors = text.replace(escapecolor, \"\");\n  }\n  const padlength =\n    options.fixed_width === true ?\n      length - (textnocolors || text).length\n    : length -\n      wcwidth.config(options.wcwidth_options || {})(textnocolors || text);\n  if (padlength < 0) {\n    if (options.strip) {\n      return invert ? text.substr(length * -1) : text.substr(0, length);\n    }\n    return text;\n  }\n  pad += options.char.repeat(padlength);\n  return invert ? pad + text : text + pad;\n}\n\nexport default pad;\n"],"names":["clone","parent","circular","depth","prototype","filter","allParents","allChildren","useBuffer","Buffer","Infinity","_clone","child","proto","__isArray","__isRegExp","RegExp","source","__getRegExpFlags","lastIndex","__isDate","Date","getTime","isBuffer","allocUnsafe","length","copy","Object","getPrototypeOf","create","index","indexOf","push","i","attrs","getOwnPropertyDescriptor","set","__objToStr","o","toString","call","re","flags","global","ignoreCase","multiline","clonePrototype","c","module","exports","require$$0","defaults","options","keys","forEach","key","combining","require$$1","DEFAULTS","nul","control","wcswidth","str","opts","wcwidth","s","n","charCodeAt","ucs","mid","min","max","Math","floor","bisearch","wcwidthModule","config","arg1","arg2","invert","text","char","strip","textnocolors","pad","colors","escapecolor","replace","padlength","fixed_width","wcwidth_options","substr","repeat"],"mappings":"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AClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD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","x_google_ignoreList":[0,1,2,3]}

Выполнить команду


Для локальной разработки. Не используйте в интернете!