bootstrap-table-toolbar.js 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
  3. typeof define === 'function' && define.amd ? define(['jquery'], factory) :
  4. (global = global || self, factory(global.jQuery));
  5. }(this, (function ($) { 'use strict';
  6. $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
  7. var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
  8. function createCommonjsModule(fn, module) {
  9. return module = { exports: {} }, fn(module, module.exports), module.exports;
  10. }
  11. var check = function (it) {
  12. return it && it.Math == Math && it;
  13. };
  14. // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
  15. var global_1 =
  16. // eslint-disable-next-line no-undef
  17. check(typeof globalThis == 'object' && globalThis) ||
  18. check(typeof window == 'object' && window) ||
  19. check(typeof self == 'object' && self) ||
  20. check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
  21. // eslint-disable-next-line no-new-func
  22. Function('return this')();
  23. var fails = function (exec) {
  24. try {
  25. return !!exec();
  26. } catch (error) {
  27. return true;
  28. }
  29. };
  30. // Thank's IE8 for his funny defineProperty
  31. var descriptors = !fails(function () {
  32. return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
  33. });
  34. var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
  35. var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  36. // Nashorn ~ JDK8 bug
  37. var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
  38. // `Object.prototype.propertyIsEnumerable` method implementation
  39. // https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable
  40. var f = NASHORN_BUG ? function propertyIsEnumerable(V) {
  41. var descriptor = getOwnPropertyDescriptor(this, V);
  42. return !!descriptor && descriptor.enumerable;
  43. } : nativePropertyIsEnumerable;
  44. var objectPropertyIsEnumerable = {
  45. f: f
  46. };
  47. var createPropertyDescriptor = function (bitmap, value) {
  48. return {
  49. enumerable: !(bitmap & 1),
  50. configurable: !(bitmap & 2),
  51. writable: !(bitmap & 4),
  52. value: value
  53. };
  54. };
  55. var toString = {}.toString;
  56. var classofRaw = function (it) {
  57. return toString.call(it).slice(8, -1);
  58. };
  59. var split = ''.split;
  60. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  61. var indexedObject = fails(function () {
  62. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  63. // eslint-disable-next-line no-prototype-builtins
  64. return !Object('z').propertyIsEnumerable(0);
  65. }) ? function (it) {
  66. return classofRaw(it) == 'String' ? split.call(it, '') : Object(it);
  67. } : Object;
  68. // `RequireObjectCoercible` abstract operation
  69. // https://tc39.github.io/ecma262/#sec-requireobjectcoercible
  70. var requireObjectCoercible = function (it) {
  71. if (it == undefined) throw TypeError("Can't call method on " + it);
  72. return it;
  73. };
  74. // toObject with fallback for non-array-like ES3 strings
  75. var toIndexedObject = function (it) {
  76. return indexedObject(requireObjectCoercible(it));
  77. };
  78. var isObject = function (it) {
  79. return typeof it === 'object' ? it !== null : typeof it === 'function';
  80. };
  81. // `ToPrimitive` abstract operation
  82. // https://tc39.github.io/ecma262/#sec-toprimitive
  83. // instead of the ES6 spec version, we didn't implement @@toPrimitive case
  84. // and the second argument - flag - preferred type is a string
  85. var toPrimitive = function (input, PREFERRED_STRING) {
  86. if (!isObject(input)) return input;
  87. var fn, val;
  88. if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
  89. if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
  90. if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
  91. throw TypeError("Can't convert object to primitive value");
  92. };
  93. var hasOwnProperty = {}.hasOwnProperty;
  94. var has = function (it, key) {
  95. return hasOwnProperty.call(it, key);
  96. };
  97. var document$1 = global_1.document;
  98. // typeof document.createElement is 'object' in old IE
  99. var EXISTS = isObject(document$1) && isObject(document$1.createElement);
  100. var documentCreateElement = function (it) {
  101. return EXISTS ? document$1.createElement(it) : {};
  102. };
  103. // Thank's IE8 for his funny defineProperty
  104. var ie8DomDefine = !descriptors && !fails(function () {
  105. return Object.defineProperty(documentCreateElement('div'), 'a', {
  106. get: function () { return 7; }
  107. }).a != 7;
  108. });
  109. var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  110. // `Object.getOwnPropertyDescriptor` method
  111. // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor
  112. var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
  113. O = toIndexedObject(O);
  114. P = toPrimitive(P, true);
  115. if (ie8DomDefine) try {
  116. return nativeGetOwnPropertyDescriptor(O, P);
  117. } catch (error) { /* empty */ }
  118. if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]);
  119. };
  120. var objectGetOwnPropertyDescriptor = {
  121. f: f$1
  122. };
  123. var anObject = function (it) {
  124. if (!isObject(it)) {
  125. throw TypeError(String(it) + ' is not an object');
  126. } return it;
  127. };
  128. var nativeDefineProperty = Object.defineProperty;
  129. // `Object.defineProperty` method
  130. // https://tc39.github.io/ecma262/#sec-object.defineproperty
  131. var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
  132. anObject(O);
  133. P = toPrimitive(P, true);
  134. anObject(Attributes);
  135. if (ie8DomDefine) try {
  136. return nativeDefineProperty(O, P, Attributes);
  137. } catch (error) { /* empty */ }
  138. if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
  139. if ('value' in Attributes) O[P] = Attributes.value;
  140. return O;
  141. };
  142. var objectDefineProperty = {
  143. f: f$2
  144. };
  145. var createNonEnumerableProperty = descriptors ? function (object, key, value) {
  146. return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value));
  147. } : function (object, key, value) {
  148. object[key] = value;
  149. return object;
  150. };
  151. var setGlobal = function (key, value) {
  152. try {
  153. createNonEnumerableProperty(global_1, key, value);
  154. } catch (error) {
  155. global_1[key] = value;
  156. } return value;
  157. };
  158. var SHARED = '__core-js_shared__';
  159. var store = global_1[SHARED] || setGlobal(SHARED, {});
  160. var sharedStore = store;
  161. var functionToString = Function.toString;
  162. // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
  163. if (typeof sharedStore.inspectSource != 'function') {
  164. sharedStore.inspectSource = function (it) {
  165. return functionToString.call(it);
  166. };
  167. }
  168. var inspectSource = sharedStore.inspectSource;
  169. var WeakMap = global_1.WeakMap;
  170. var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
  171. var shared = createCommonjsModule(function (module) {
  172. (module.exports = function (key, value) {
  173. return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
  174. })('versions', []).push({
  175. version: '3.6.0',
  176. mode: 'global',
  177. copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
  178. });
  179. });
  180. var id = 0;
  181. var postfix = Math.random();
  182. var uid = function (key) {
  183. return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
  184. };
  185. var keys = shared('keys');
  186. var sharedKey = function (key) {
  187. return keys[key] || (keys[key] = uid(key));
  188. };
  189. var hiddenKeys = {};
  190. var WeakMap$1 = global_1.WeakMap;
  191. var set, get, has$1;
  192. var enforce = function (it) {
  193. return has$1(it) ? get(it) : set(it, {});
  194. };
  195. var getterFor = function (TYPE) {
  196. return function (it) {
  197. var state;
  198. if (!isObject(it) || (state = get(it)).type !== TYPE) {
  199. throw TypeError('Incompatible receiver, ' + TYPE + ' required');
  200. } return state;
  201. };
  202. };
  203. if (nativeWeakMap) {
  204. var store$1 = new WeakMap$1();
  205. var wmget = store$1.get;
  206. var wmhas = store$1.has;
  207. var wmset = store$1.set;
  208. set = function (it, metadata) {
  209. wmset.call(store$1, it, metadata);
  210. return metadata;
  211. };
  212. get = function (it) {
  213. return wmget.call(store$1, it) || {};
  214. };
  215. has$1 = function (it) {
  216. return wmhas.call(store$1, it);
  217. };
  218. } else {
  219. var STATE = sharedKey('state');
  220. hiddenKeys[STATE] = true;
  221. set = function (it, metadata) {
  222. createNonEnumerableProperty(it, STATE, metadata);
  223. return metadata;
  224. };
  225. get = function (it) {
  226. return has(it, STATE) ? it[STATE] : {};
  227. };
  228. has$1 = function (it) {
  229. return has(it, STATE);
  230. };
  231. }
  232. var internalState = {
  233. set: set,
  234. get: get,
  235. has: has$1,
  236. enforce: enforce,
  237. getterFor: getterFor
  238. };
  239. var redefine = createCommonjsModule(function (module) {
  240. var getInternalState = internalState.get;
  241. var enforceInternalState = internalState.enforce;
  242. var TEMPLATE = String(String).split('String');
  243. (module.exports = function (O, key, value, options) {
  244. var unsafe = options ? !!options.unsafe : false;
  245. var simple = options ? !!options.enumerable : false;
  246. var noTargetGet = options ? !!options.noTargetGet : false;
  247. if (typeof value == 'function') {
  248. if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);
  249. enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');
  250. }
  251. if (O === global_1) {
  252. if (simple) O[key] = value;
  253. else setGlobal(key, value);
  254. return;
  255. } else if (!unsafe) {
  256. delete O[key];
  257. } else if (!noTargetGet && O[key]) {
  258. simple = true;
  259. }
  260. if (simple) O[key] = value;
  261. else createNonEnumerableProperty(O, key, value);
  262. // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
  263. })(Function.prototype, 'toString', function toString() {
  264. return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
  265. });
  266. });
  267. var path = global_1;
  268. var aFunction = function (variable) {
  269. return typeof variable == 'function' ? variable : undefined;
  270. };
  271. var getBuiltIn = function (namespace, method) {
  272. return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global_1[namespace])
  273. : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method];
  274. };
  275. var ceil = Math.ceil;
  276. var floor = Math.floor;
  277. // `ToInteger` abstract operation
  278. // https://tc39.github.io/ecma262/#sec-tointeger
  279. var toInteger = function (argument) {
  280. return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
  281. };
  282. var min = Math.min;
  283. // `ToLength` abstract operation
  284. // https://tc39.github.io/ecma262/#sec-tolength
  285. var toLength = function (argument) {
  286. return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
  287. };
  288. var max = Math.max;
  289. var min$1 = Math.min;
  290. // Helper for a popular repeating case of the spec:
  291. // Let integer be ? ToInteger(index).
  292. // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
  293. var toAbsoluteIndex = function (index, length) {
  294. var integer = toInteger(index);
  295. return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
  296. };
  297. // `Array.prototype.{ indexOf, includes }` methods implementation
  298. var createMethod = function (IS_INCLUDES) {
  299. return function ($this, el, fromIndex) {
  300. var O = toIndexedObject($this);
  301. var length = toLength(O.length);
  302. var index = toAbsoluteIndex(fromIndex, length);
  303. var value;
  304. // Array#includes uses SameValueZero equality algorithm
  305. // eslint-disable-next-line no-self-compare
  306. if (IS_INCLUDES && el != el) while (length > index) {
  307. value = O[index++];
  308. // eslint-disable-next-line no-self-compare
  309. if (value != value) return true;
  310. // Array#indexOf ignores holes, Array#includes - not
  311. } else for (;length > index; index++) {
  312. if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
  313. } return !IS_INCLUDES && -1;
  314. };
  315. };
  316. var arrayIncludes = {
  317. // `Array.prototype.includes` method
  318. // https://tc39.github.io/ecma262/#sec-array.prototype.includes
  319. includes: createMethod(true),
  320. // `Array.prototype.indexOf` method
  321. // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
  322. indexOf: createMethod(false)
  323. };
  324. var indexOf = arrayIncludes.indexOf;
  325. var objectKeysInternal = function (object, names) {
  326. var O = toIndexedObject(object);
  327. var i = 0;
  328. var result = [];
  329. var key;
  330. for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
  331. // Don't enum bug & hidden keys
  332. while (names.length > i) if (has(O, key = names[i++])) {
  333. ~indexOf(result, key) || result.push(key);
  334. }
  335. return result;
  336. };
  337. // IE8- don't enum bug keys
  338. var enumBugKeys = [
  339. 'constructor',
  340. 'hasOwnProperty',
  341. 'isPrototypeOf',
  342. 'propertyIsEnumerable',
  343. 'toLocaleString',
  344. 'toString',
  345. 'valueOf'
  346. ];
  347. var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype');
  348. // `Object.getOwnPropertyNames` method
  349. // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
  350. var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  351. return objectKeysInternal(O, hiddenKeys$1);
  352. };
  353. var objectGetOwnPropertyNames = {
  354. f: f$3
  355. };
  356. var f$4 = Object.getOwnPropertySymbols;
  357. var objectGetOwnPropertySymbols = {
  358. f: f$4
  359. };
  360. // all object keys, includes non-enumerable and symbols
  361. var ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
  362. var keys = objectGetOwnPropertyNames.f(anObject(it));
  363. var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
  364. return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
  365. };
  366. var copyConstructorProperties = function (target, source) {
  367. var keys = ownKeys(source);
  368. var defineProperty = objectDefineProperty.f;
  369. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  370. for (var i = 0; i < keys.length; i++) {
  371. var key = keys[i];
  372. if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
  373. }
  374. };
  375. var replacement = /#|\.prototype\./;
  376. var isForced = function (feature, detection) {
  377. var value = data[normalize(feature)];
  378. return value == POLYFILL ? true
  379. : value == NATIVE ? false
  380. : typeof detection == 'function' ? fails(detection)
  381. : !!detection;
  382. };
  383. var normalize = isForced.normalize = function (string) {
  384. return String(string).replace(replacement, '.').toLowerCase();
  385. };
  386. var data = isForced.data = {};
  387. var NATIVE = isForced.NATIVE = 'N';
  388. var POLYFILL = isForced.POLYFILL = 'P';
  389. var isForced_1 = isForced;
  390. var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
  391. /*
  392. options.target - name of the target object
  393. options.global - target is the global object
  394. options.stat - export as static methods of target
  395. options.proto - export as prototype methods of target
  396. options.real - real prototype method for the `pure` version
  397. options.forced - export even if the native feature is available
  398. options.bind - bind methods to the target, required for the `pure` version
  399. options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
  400. options.unsafe - use the simple assignment of property instead of delete + defineProperty
  401. options.sham - add a flag to not completely full polyfills
  402. options.enumerable - export as enumerable property
  403. options.noTargetGet - prevent calling a getter on target
  404. */
  405. var _export = function (options, source) {
  406. var TARGET = options.target;
  407. var GLOBAL = options.global;
  408. var STATIC = options.stat;
  409. var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  410. if (GLOBAL) {
  411. target = global_1;
  412. } else if (STATIC) {
  413. target = global_1[TARGET] || setGlobal(TARGET, {});
  414. } else {
  415. target = (global_1[TARGET] || {}).prototype;
  416. }
  417. if (target) for (key in source) {
  418. sourceProperty = source[key];
  419. if (options.noTargetGet) {
  420. descriptor = getOwnPropertyDescriptor$1(target, key);
  421. targetProperty = descriptor && descriptor.value;
  422. } else targetProperty = target[key];
  423. FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
  424. // contained in target
  425. if (!FORCED && targetProperty !== undefined) {
  426. if (typeof sourceProperty === typeof targetProperty) continue;
  427. copyConstructorProperties(sourceProperty, targetProperty);
  428. }
  429. // add a flag to not completely full polyfills
  430. if (options.sham || (targetProperty && targetProperty.sham)) {
  431. createNonEnumerableProperty(sourceProperty, 'sham', true);
  432. }
  433. // extend global
  434. redefine(target, key, sourceProperty, options);
  435. }
  436. };
  437. var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () {
  438. // Chrome 38 Symbol has incorrect toString conversion
  439. // eslint-disable-next-line no-undef
  440. return !String(Symbol());
  441. });
  442. var useSymbolAsUid = nativeSymbol
  443. // eslint-disable-next-line no-undef
  444. && !Symbol.sham
  445. // eslint-disable-next-line no-undef
  446. && typeof Symbol() == 'symbol';
  447. // `IsArray` abstract operation
  448. // https://tc39.github.io/ecma262/#sec-isarray
  449. var isArray = Array.isArray || function isArray(arg) {
  450. return classofRaw(arg) == 'Array';
  451. };
  452. // `ToObject` abstract operation
  453. // https://tc39.github.io/ecma262/#sec-toobject
  454. var toObject = function (argument) {
  455. return Object(requireObjectCoercible(argument));
  456. };
  457. // `Object.keys` method
  458. // https://tc39.github.io/ecma262/#sec-object.keys
  459. var objectKeys = Object.keys || function keys(O) {
  460. return objectKeysInternal(O, enumBugKeys);
  461. };
  462. // `Object.defineProperties` method
  463. // https://tc39.github.io/ecma262/#sec-object.defineproperties
  464. var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) {
  465. anObject(O);
  466. var keys = objectKeys(Properties);
  467. var length = keys.length;
  468. var index = 0;
  469. var key;
  470. while (length > index) objectDefineProperty.f(O, key = keys[index++], Properties[key]);
  471. return O;
  472. };
  473. var html = getBuiltIn('document', 'documentElement');
  474. var GT = '>';
  475. var LT = '<';
  476. var PROTOTYPE = 'prototype';
  477. var SCRIPT = 'script';
  478. var IE_PROTO = sharedKey('IE_PROTO');
  479. var EmptyConstructor = function () { /* empty */ };
  480. var scriptTag = function (content) {
  481. return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
  482. };
  483. // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
  484. var NullProtoObjectViaActiveX = function (activeXDocument) {
  485. activeXDocument.write(scriptTag(''));
  486. activeXDocument.close();
  487. var temp = activeXDocument.parentWindow.Object;
  488. activeXDocument = null; // avoid memory leak
  489. return temp;
  490. };
  491. // Create object with fake `null` prototype: use iframe Object with cleared prototype
  492. var NullProtoObjectViaIFrame = function () {
  493. // Thrash, waste and sodomy: IE GC bug
  494. var iframe = documentCreateElement('iframe');
  495. var JS = 'java' + SCRIPT + ':';
  496. var iframeDocument;
  497. iframe.style.display = 'none';
  498. html.appendChild(iframe);
  499. // https://github.com/zloirock/core-js/issues/475
  500. iframe.src = String(JS);
  501. iframeDocument = iframe.contentWindow.document;
  502. iframeDocument.open();
  503. iframeDocument.write(scriptTag('document.F=Object'));
  504. iframeDocument.close();
  505. return iframeDocument.F;
  506. };
  507. // Check for document.domain and active x support
  508. // No need to use active x approach when document.domain is not set
  509. // see https://github.com/es-shims/es5-shim/issues/150
  510. // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
  511. // avoid IE GC bug
  512. var activeXDocument;
  513. var NullProtoObject = function () {
  514. try {
  515. /* global ActiveXObject */
  516. activeXDocument = document.domain && new ActiveXObject('htmlfile');
  517. } catch (error) { /* ignore */ }
  518. NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
  519. var length = enumBugKeys.length;
  520. while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
  521. return NullProtoObject();
  522. };
  523. hiddenKeys[IE_PROTO] = true;
  524. // `Object.create` method
  525. // https://tc39.github.io/ecma262/#sec-object.create
  526. var objectCreate = Object.create || function create(O, Properties) {
  527. var result;
  528. if (O !== null) {
  529. EmptyConstructor[PROTOTYPE] = anObject(O);
  530. result = new EmptyConstructor();
  531. EmptyConstructor[PROTOTYPE] = null;
  532. // add "__proto__" for Object.getPrototypeOf polyfill
  533. result[IE_PROTO] = O;
  534. } else result = NullProtoObject();
  535. return Properties === undefined ? result : objectDefineProperties(result, Properties);
  536. };
  537. var nativeGetOwnPropertyNames = objectGetOwnPropertyNames.f;
  538. var toString$1 = {}.toString;
  539. var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
  540. ? Object.getOwnPropertyNames(window) : [];
  541. var getWindowNames = function (it) {
  542. try {
  543. return nativeGetOwnPropertyNames(it);
  544. } catch (error) {
  545. return windowNames.slice();
  546. }
  547. };
  548. // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
  549. var f$5 = function getOwnPropertyNames(it) {
  550. return windowNames && toString$1.call(it) == '[object Window]'
  551. ? getWindowNames(it)
  552. : nativeGetOwnPropertyNames(toIndexedObject(it));
  553. };
  554. var objectGetOwnPropertyNamesExternal = {
  555. f: f$5
  556. };
  557. var WellKnownSymbolsStore = shared('wks');
  558. var Symbol$1 = global_1.Symbol;
  559. var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : uid;
  560. var wellKnownSymbol = function (name) {
  561. if (!has(WellKnownSymbolsStore, name)) {
  562. if (nativeSymbol && has(Symbol$1, name)) WellKnownSymbolsStore[name] = Symbol$1[name];
  563. else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
  564. } return WellKnownSymbolsStore[name];
  565. };
  566. var f$6 = wellKnownSymbol;
  567. var wrappedWellKnownSymbol = {
  568. f: f$6
  569. };
  570. var defineProperty = objectDefineProperty.f;
  571. var defineWellKnownSymbol = function (NAME) {
  572. var Symbol = path.Symbol || (path.Symbol = {});
  573. if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {
  574. value: wrappedWellKnownSymbol.f(NAME)
  575. });
  576. };
  577. var defineProperty$1 = objectDefineProperty.f;
  578. var TO_STRING_TAG = wellKnownSymbol('toStringTag');
  579. var setToStringTag = function (it, TAG, STATIC) {
  580. if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
  581. defineProperty$1(it, TO_STRING_TAG, { configurable: true, value: TAG });
  582. }
  583. };
  584. var aFunction$1 = function (it) {
  585. if (typeof it != 'function') {
  586. throw TypeError(String(it) + ' is not a function');
  587. } return it;
  588. };
  589. // optional / simple context binding
  590. var bindContext = function (fn, that, length) {
  591. aFunction$1(fn);
  592. if (that === undefined) return fn;
  593. switch (length) {
  594. case 0: return function () {
  595. return fn.call(that);
  596. };
  597. case 1: return function (a) {
  598. return fn.call(that, a);
  599. };
  600. case 2: return function (a, b) {
  601. return fn.call(that, a, b);
  602. };
  603. case 3: return function (a, b, c) {
  604. return fn.call(that, a, b, c);
  605. };
  606. }
  607. return function (/* ...args */) {
  608. return fn.apply(that, arguments);
  609. };
  610. };
  611. var SPECIES = wellKnownSymbol('species');
  612. // `ArraySpeciesCreate` abstract operation
  613. // https://tc39.github.io/ecma262/#sec-arrayspeciescreate
  614. var arraySpeciesCreate = function (originalArray, length) {
  615. var C;
  616. if (isArray(originalArray)) {
  617. C = originalArray.constructor;
  618. // cross-realm fallback
  619. if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
  620. else if (isObject(C)) {
  621. C = C[SPECIES];
  622. if (C === null) C = undefined;
  623. }
  624. } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
  625. };
  626. var push = [].push;
  627. // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation
  628. var createMethod$1 = function (TYPE) {
  629. var IS_MAP = TYPE == 1;
  630. var IS_FILTER = TYPE == 2;
  631. var IS_SOME = TYPE == 3;
  632. var IS_EVERY = TYPE == 4;
  633. var IS_FIND_INDEX = TYPE == 6;
  634. var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
  635. return function ($this, callbackfn, that, specificCreate) {
  636. var O = toObject($this);
  637. var self = indexedObject(O);
  638. var boundFunction = bindContext(callbackfn, that, 3);
  639. var length = toLength(self.length);
  640. var index = 0;
  641. var create = specificCreate || arraySpeciesCreate;
  642. var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;
  643. var value, result;
  644. for (;length > index; index++) if (NO_HOLES || index in self) {
  645. value = self[index];
  646. result = boundFunction(value, index, O);
  647. if (TYPE) {
  648. if (IS_MAP) target[index] = result; // map
  649. else if (result) switch (TYPE) {
  650. case 3: return true; // some
  651. case 5: return value; // find
  652. case 6: return index; // findIndex
  653. case 2: push.call(target, value); // filter
  654. } else if (IS_EVERY) return false; // every
  655. }
  656. }
  657. return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
  658. };
  659. };
  660. var arrayIteration = {
  661. // `Array.prototype.forEach` method
  662. // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
  663. forEach: createMethod$1(0),
  664. // `Array.prototype.map` method
  665. // https://tc39.github.io/ecma262/#sec-array.prototype.map
  666. map: createMethod$1(1),
  667. // `Array.prototype.filter` method
  668. // https://tc39.github.io/ecma262/#sec-array.prototype.filter
  669. filter: createMethod$1(2),
  670. // `Array.prototype.some` method
  671. // https://tc39.github.io/ecma262/#sec-array.prototype.some
  672. some: createMethod$1(3),
  673. // `Array.prototype.every` method
  674. // https://tc39.github.io/ecma262/#sec-array.prototype.every
  675. every: createMethod$1(4),
  676. // `Array.prototype.find` method
  677. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  678. find: createMethod$1(5),
  679. // `Array.prototype.findIndex` method
  680. // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
  681. findIndex: createMethod$1(6)
  682. };
  683. var $forEach = arrayIteration.forEach;
  684. var HIDDEN = sharedKey('hidden');
  685. var SYMBOL = 'Symbol';
  686. var PROTOTYPE$1 = 'prototype';
  687. var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
  688. var setInternalState = internalState.set;
  689. var getInternalState = internalState.getterFor(SYMBOL);
  690. var ObjectPrototype = Object[PROTOTYPE$1];
  691. var $Symbol = global_1.Symbol;
  692. var $stringify = getBuiltIn('JSON', 'stringify');
  693. var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
  694. var nativeDefineProperty$1 = objectDefineProperty.f;
  695. var nativeGetOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f;
  696. var nativePropertyIsEnumerable$1 = objectPropertyIsEnumerable.f;
  697. var AllSymbols = shared('symbols');
  698. var ObjectPrototypeSymbols = shared('op-symbols');
  699. var StringToSymbolRegistry = shared('string-to-symbol-registry');
  700. var SymbolToStringRegistry = shared('symbol-to-string-registry');
  701. var WellKnownSymbolsStore$1 = shared('wks');
  702. var QObject = global_1.QObject;
  703. // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
  704. var USE_SETTER = !QObject || !QObject[PROTOTYPE$1] || !QObject[PROTOTYPE$1].findChild;
  705. // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
  706. var setSymbolDescriptor = descriptors && fails(function () {
  707. return objectCreate(nativeDefineProperty$1({}, 'a', {
  708. get: function () { return nativeDefineProperty$1(this, 'a', { value: 7 }).a; }
  709. })).a != 7;
  710. }) ? function (O, P, Attributes) {
  711. var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype, P);
  712. if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];
  713. nativeDefineProperty$1(O, P, Attributes);
  714. if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {
  715. nativeDefineProperty$1(ObjectPrototype, P, ObjectPrototypeDescriptor);
  716. }
  717. } : nativeDefineProperty$1;
  718. var wrap = function (tag, description) {
  719. var symbol = AllSymbols[tag] = objectCreate($Symbol[PROTOTYPE$1]);
  720. setInternalState(symbol, {
  721. type: SYMBOL,
  722. tag: tag,
  723. description: description
  724. });
  725. if (!descriptors) symbol.description = description;
  726. return symbol;
  727. };
  728. var isSymbol = nativeSymbol && typeof $Symbol.iterator == 'symbol' ? function (it) {
  729. return typeof it == 'symbol';
  730. } : function (it) {
  731. return Object(it) instanceof $Symbol;
  732. };
  733. var $defineProperty = function defineProperty(O, P, Attributes) {
  734. if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
  735. anObject(O);
  736. var key = toPrimitive(P, true);
  737. anObject(Attributes);
  738. if (has(AllSymbols, key)) {
  739. if (!Attributes.enumerable) {
  740. if (!has(O, HIDDEN)) nativeDefineProperty$1(O, HIDDEN, createPropertyDescriptor(1, {}));
  741. O[HIDDEN][key] = true;
  742. } else {
  743. if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
  744. Attributes = objectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
  745. } return setSymbolDescriptor(O, key, Attributes);
  746. } return nativeDefineProperty$1(O, key, Attributes);
  747. };
  748. var $defineProperties = function defineProperties(O, Properties) {
  749. anObject(O);
  750. var properties = toIndexedObject(Properties);
  751. var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
  752. $forEach(keys, function (key) {
  753. if (!descriptors || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);
  754. });
  755. return O;
  756. };
  757. var $create = function create(O, Properties) {
  758. return Properties === undefined ? objectCreate(O) : $defineProperties(objectCreate(O), Properties);
  759. };
  760. var $propertyIsEnumerable = function propertyIsEnumerable(V) {
  761. var P = toPrimitive(V, true);
  762. var enumerable = nativePropertyIsEnumerable$1.call(this, P);
  763. if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;
  764. return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;
  765. };
  766. var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
  767. var it = toIndexedObject(O);
  768. var key = toPrimitive(P, true);
  769. if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;
  770. var descriptor = nativeGetOwnPropertyDescriptor$1(it, key);
  771. if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {
  772. descriptor.enumerable = true;
  773. }
  774. return descriptor;
  775. };
  776. var $getOwnPropertyNames = function getOwnPropertyNames(O) {
  777. var names = nativeGetOwnPropertyNames$1(toIndexedObject(O));
  778. var result = [];
  779. $forEach(names, function (key) {
  780. if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);
  781. });
  782. return result;
  783. };
  784. var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
  785. var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;
  786. var names = nativeGetOwnPropertyNames$1(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
  787. var result = [];
  788. $forEach(names, function (key) {
  789. if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {
  790. result.push(AllSymbols[key]);
  791. }
  792. });
  793. return result;
  794. };
  795. // `Symbol` constructor
  796. // https://tc39.github.io/ecma262/#sec-symbol-constructor
  797. if (!nativeSymbol) {
  798. $Symbol = function Symbol() {
  799. if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');
  800. var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);
  801. var tag = uid(description);
  802. var setter = function (value) {
  803. if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);
  804. if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
  805. setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
  806. };
  807. if (descriptors && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
  808. return wrap(tag, description);
  809. };
  810. redefine($Symbol[PROTOTYPE$1], 'toString', function toString() {
  811. return getInternalState(this).tag;
  812. });
  813. objectPropertyIsEnumerable.f = $propertyIsEnumerable;
  814. objectDefineProperty.f = $defineProperty;
  815. objectGetOwnPropertyDescriptor.f = $getOwnPropertyDescriptor;
  816. objectGetOwnPropertyNames.f = objectGetOwnPropertyNamesExternal.f = $getOwnPropertyNames;
  817. objectGetOwnPropertySymbols.f = $getOwnPropertySymbols;
  818. if (descriptors) {
  819. // https://github.com/tc39/proposal-Symbol-description
  820. nativeDefineProperty$1($Symbol[PROTOTYPE$1], 'description', {
  821. configurable: true,
  822. get: function description() {
  823. return getInternalState(this).description;
  824. }
  825. });
  826. {
  827. redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });
  828. }
  829. }
  830. }
  831. if (!useSymbolAsUid) {
  832. wrappedWellKnownSymbol.f = function (name) {
  833. return wrap(wellKnownSymbol(name), name);
  834. };
  835. }
  836. _export({ global: true, wrap: true, forced: !nativeSymbol, sham: !nativeSymbol }, {
  837. Symbol: $Symbol
  838. });
  839. $forEach(objectKeys(WellKnownSymbolsStore$1), function (name) {
  840. defineWellKnownSymbol(name);
  841. });
  842. _export({ target: SYMBOL, stat: true, forced: !nativeSymbol }, {
  843. // `Symbol.for` method
  844. // https://tc39.github.io/ecma262/#sec-symbol.for
  845. 'for': function (key) {
  846. var string = String(key);
  847. if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
  848. var symbol = $Symbol(string);
  849. StringToSymbolRegistry[string] = symbol;
  850. SymbolToStringRegistry[symbol] = string;
  851. return symbol;
  852. },
  853. // `Symbol.keyFor` method
  854. // https://tc39.github.io/ecma262/#sec-symbol.keyfor
  855. keyFor: function keyFor(sym) {
  856. if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
  857. if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
  858. },
  859. useSetter: function () { USE_SETTER = true; },
  860. useSimple: function () { USE_SETTER = false; }
  861. });
  862. _export({ target: 'Object', stat: true, forced: !nativeSymbol, sham: !descriptors }, {
  863. // `Object.create` method
  864. // https://tc39.github.io/ecma262/#sec-object.create
  865. create: $create,
  866. // `Object.defineProperty` method
  867. // https://tc39.github.io/ecma262/#sec-object.defineproperty
  868. defineProperty: $defineProperty,
  869. // `Object.defineProperties` method
  870. // https://tc39.github.io/ecma262/#sec-object.defineproperties
  871. defineProperties: $defineProperties,
  872. // `Object.getOwnPropertyDescriptor` method
  873. // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors
  874. getOwnPropertyDescriptor: $getOwnPropertyDescriptor
  875. });
  876. _export({ target: 'Object', stat: true, forced: !nativeSymbol }, {
  877. // `Object.getOwnPropertyNames` method
  878. // https://tc39.github.io/ecma262/#sec-object.getownpropertynames
  879. getOwnPropertyNames: $getOwnPropertyNames,
  880. // `Object.getOwnPropertySymbols` method
  881. // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols
  882. getOwnPropertySymbols: $getOwnPropertySymbols
  883. });
  884. // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
  885. // https://bugs.chromium.org/p/v8/issues/detail?id=3443
  886. _export({ target: 'Object', stat: true, forced: fails(function () { objectGetOwnPropertySymbols.f(1); }) }, {
  887. getOwnPropertySymbols: function getOwnPropertySymbols(it) {
  888. return objectGetOwnPropertySymbols.f(toObject(it));
  889. }
  890. });
  891. // `JSON.stringify` method behavior with symbols
  892. // https://tc39.github.io/ecma262/#sec-json.stringify
  893. if ($stringify) {
  894. var FORCED_JSON_STRINGIFY = !nativeSymbol || fails(function () {
  895. var symbol = $Symbol();
  896. // MS Edge converts symbol values to JSON as {}
  897. return $stringify([symbol]) != '[null]'
  898. // WebKit converts symbol values to JSON as null
  899. || $stringify({ a: symbol }) != '{}'
  900. // V8 throws on boxed symbols
  901. || $stringify(Object(symbol)) != '{}';
  902. });
  903. _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
  904. // eslint-disable-next-line no-unused-vars
  905. stringify: function stringify(it, replacer, space) {
  906. var args = [it];
  907. var index = 1;
  908. var $replacer;
  909. while (arguments.length > index) args.push(arguments[index++]);
  910. $replacer = replacer;
  911. if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
  912. if (!isArray(replacer)) replacer = function (key, value) {
  913. if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
  914. if (!isSymbol(value)) return value;
  915. };
  916. args[1] = replacer;
  917. return $stringify.apply(null, args);
  918. }
  919. });
  920. }
  921. // `Symbol.prototype[@@toPrimitive]` method
  922. // https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive
  923. if (!$Symbol[PROTOTYPE$1][TO_PRIMITIVE]) {
  924. createNonEnumerableProperty($Symbol[PROTOTYPE$1], TO_PRIMITIVE, $Symbol[PROTOTYPE$1].valueOf);
  925. }
  926. // `Symbol.prototype[@@toStringTag]` property
  927. // https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag
  928. setToStringTag($Symbol, SYMBOL);
  929. hiddenKeys[HIDDEN] = true;
  930. var defineProperty$2 = objectDefineProperty.f;
  931. var NativeSymbol = global_1.Symbol;
  932. if (descriptors && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) ||
  933. // Safari 12 bug
  934. NativeSymbol().description !== undefined
  935. )) {
  936. var EmptyStringDescriptionStore = {};
  937. // wrap Symbol constructor for correct work with undefined description
  938. var SymbolWrapper = function Symbol() {
  939. var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);
  940. var result = this instanceof SymbolWrapper
  941. ? new NativeSymbol(description)
  942. // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
  943. : description === undefined ? NativeSymbol() : NativeSymbol(description);
  944. if (description === '') EmptyStringDescriptionStore[result] = true;
  945. return result;
  946. };
  947. copyConstructorProperties(SymbolWrapper, NativeSymbol);
  948. var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;
  949. symbolPrototype.constructor = SymbolWrapper;
  950. var symbolToString = symbolPrototype.toString;
  951. var native = String(NativeSymbol('test')) == 'Symbol(test)';
  952. var regexp = /^Symbol\((.*)\)[^)]+$/;
  953. defineProperty$2(symbolPrototype, 'description', {
  954. configurable: true,
  955. get: function description() {
  956. var symbol = isObject(this) ? this.valueOf() : this;
  957. var string = symbolToString.call(symbol);
  958. if (has(EmptyStringDescriptionStore, symbol)) return '';
  959. var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');
  960. return desc === '' ? undefined : desc;
  961. }
  962. });
  963. _export({ global: true, forced: true }, {
  964. Symbol: SymbolWrapper
  965. });
  966. }
  967. // `Symbol.iterator` well-known symbol
  968. // https://tc39.github.io/ecma262/#sec-symbol.iterator
  969. defineWellKnownSymbol('iterator');
  970. var createProperty = function (object, key, value) {
  971. var propertyKey = toPrimitive(key);
  972. if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));
  973. else object[propertyKey] = value;
  974. };
  975. var userAgent = getBuiltIn('navigator', 'userAgent') || '';
  976. var process = global_1.process;
  977. var versions = process && process.versions;
  978. var v8 = versions && versions.v8;
  979. var match, version;
  980. if (v8) {
  981. match = v8.split('.');
  982. version = match[0] + match[1];
  983. } else if (userAgent) {
  984. match = userAgent.match(/Edge\/(\d+)/);
  985. if (!match || match[1] >= 74) {
  986. match = userAgent.match(/Chrome\/(\d+)/);
  987. if (match) version = match[1];
  988. }
  989. }
  990. var v8Version = version && +version;
  991. var SPECIES$1 = wellKnownSymbol('species');
  992. var arrayMethodHasSpeciesSupport = function (METHOD_NAME) {
  993. // We can't use this feature detection in V8 since it causes
  994. // deoptimization and serious performance degradation
  995. // https://github.com/zloirock/core-js/issues/677
  996. return v8Version >= 51 || !fails(function () {
  997. var array = [];
  998. var constructor = array.constructor = {};
  999. constructor[SPECIES$1] = function () {
  1000. return { foo: 1 };
  1001. };
  1002. return array[METHOD_NAME](Boolean).foo !== 1;
  1003. });
  1004. };
  1005. var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
  1006. var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
  1007. var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
  1008. // We can't use this feature detection in V8 since it causes
  1009. // deoptimization and serious performance degradation
  1010. // https://github.com/zloirock/core-js/issues/679
  1011. var IS_CONCAT_SPREADABLE_SUPPORT = v8Version >= 51 || !fails(function () {
  1012. var array = [];
  1013. array[IS_CONCAT_SPREADABLE] = false;
  1014. return array.concat()[0] !== array;
  1015. });
  1016. var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
  1017. var isConcatSpreadable = function (O) {
  1018. if (!isObject(O)) return false;
  1019. var spreadable = O[IS_CONCAT_SPREADABLE];
  1020. return spreadable !== undefined ? !!spreadable : isArray(O);
  1021. };
  1022. var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
  1023. // `Array.prototype.concat` method
  1024. // https://tc39.github.io/ecma262/#sec-array.prototype.concat
  1025. // with adding support of @@isConcatSpreadable and @@species
  1026. _export({ target: 'Array', proto: true, forced: FORCED }, {
  1027. concat: function concat(arg) { // eslint-disable-line no-unused-vars
  1028. var O = toObject(this);
  1029. var A = arraySpeciesCreate(O, 0);
  1030. var n = 0;
  1031. var i, k, length, len, E;
  1032. for (i = -1, length = arguments.length; i < length; i++) {
  1033. E = i === -1 ? O : arguments[i];
  1034. if (isConcatSpreadable(E)) {
  1035. len = toLength(E.length);
  1036. if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  1037. for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
  1038. } else {
  1039. if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
  1040. createProperty(A, n++, E);
  1041. }
  1042. }
  1043. A.length = n;
  1044. return A;
  1045. }
  1046. });
  1047. var $filter = arrayIteration.filter;
  1048. var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');
  1049. // Edge 14- issue
  1050. var USES_TO_LENGTH = HAS_SPECIES_SUPPORT && !fails(function () {
  1051. [].filter.call({ length: -1, 0: 1 }, function (it) { throw it; });
  1052. });
  1053. // `Array.prototype.filter` method
  1054. // https://tc39.github.io/ecma262/#sec-array.prototype.filter
  1055. // with adding support of @@species
  1056. _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {
  1057. filter: function filter(callbackfn /* , thisArg */) {
  1058. return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  1059. }
  1060. });
  1061. var UNSCOPABLES = wellKnownSymbol('unscopables');
  1062. var ArrayPrototype = Array.prototype;
  1063. // Array.prototype[@@unscopables]
  1064. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1065. if (ArrayPrototype[UNSCOPABLES] == undefined) {
  1066. objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, {
  1067. configurable: true,
  1068. value: objectCreate(null)
  1069. });
  1070. }
  1071. // add a key to Array.prototype[@@unscopables]
  1072. var addToUnscopables = function (key) {
  1073. ArrayPrototype[UNSCOPABLES][key] = true;
  1074. };
  1075. var $find = arrayIteration.find;
  1076. var FIND = 'find';
  1077. var SKIPS_HOLES = true;
  1078. // Shouldn't skip holes
  1079. if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
  1080. // `Array.prototype.find` method
  1081. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  1082. _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
  1083. find: function find(callbackfn /* , that = undefined */) {
  1084. return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  1085. }
  1086. });
  1087. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1088. addToUnscopables(FIND);
  1089. var $includes = arrayIncludes.includes;
  1090. // `Array.prototype.includes` method
  1091. // https://tc39.github.io/ecma262/#sec-array.prototype.includes
  1092. _export({ target: 'Array', proto: true }, {
  1093. includes: function includes(el /* , fromIndex = 0 */) {
  1094. return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
  1095. }
  1096. });
  1097. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1098. addToUnscopables('includes');
  1099. var sloppyArrayMethod = function (METHOD_NAME, argument) {
  1100. var method = [][METHOD_NAME];
  1101. return !method || !fails(function () {
  1102. // eslint-disable-next-line no-useless-call,no-throw-literal
  1103. method.call(null, argument || function () { throw 1; }, 1);
  1104. });
  1105. };
  1106. var $indexOf = arrayIncludes.indexOf;
  1107. var nativeIndexOf = [].indexOf;
  1108. var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
  1109. var SLOPPY_METHOD = sloppyArrayMethod('indexOf');
  1110. // `Array.prototype.indexOf` method
  1111. // https://tc39.github.io/ecma262/#sec-array.prototype.indexof
  1112. _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {
  1113. indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
  1114. return NEGATIVE_ZERO
  1115. // convert -0 to +0
  1116. ? nativeIndexOf.apply(this, arguments) || 0
  1117. : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);
  1118. }
  1119. });
  1120. var correctPrototypeGetter = !fails(function () {
  1121. function F() { /* empty */ }
  1122. F.prototype.constructor = null;
  1123. return Object.getPrototypeOf(new F()) !== F.prototype;
  1124. });
  1125. var IE_PROTO$1 = sharedKey('IE_PROTO');
  1126. var ObjectPrototype$1 = Object.prototype;
  1127. // `Object.getPrototypeOf` method
  1128. // https://tc39.github.io/ecma262/#sec-object.getprototypeof
  1129. var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) {
  1130. O = toObject(O);
  1131. if (has(O, IE_PROTO$1)) return O[IE_PROTO$1];
  1132. if (typeof O.constructor == 'function' && O instanceof O.constructor) {
  1133. return O.constructor.prototype;
  1134. } return O instanceof Object ? ObjectPrototype$1 : null;
  1135. };
  1136. var ITERATOR = wellKnownSymbol('iterator');
  1137. var BUGGY_SAFARI_ITERATORS = false;
  1138. var returnThis = function () { return this; };
  1139. // `%IteratorPrototype%` object
  1140. // https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object
  1141. var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
  1142. if ([].keys) {
  1143. arrayIterator = [].keys();
  1144. // Safari 8 has buggy iterators w/o `next`
  1145. if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
  1146. else {
  1147. PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator));
  1148. if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
  1149. }
  1150. }
  1151. if (IteratorPrototype == undefined) IteratorPrototype = {};
  1152. // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
  1153. if ( !has(IteratorPrototype, ITERATOR)) {
  1154. createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
  1155. }
  1156. var iteratorsCore = {
  1157. IteratorPrototype: IteratorPrototype,
  1158. BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
  1159. };
  1160. var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
  1161. var createIteratorConstructor = function (IteratorConstructor, NAME, next) {
  1162. var TO_STRING_TAG = NAME + ' Iterator';
  1163. IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { next: createPropertyDescriptor(1, next) });
  1164. setToStringTag(IteratorConstructor, TO_STRING_TAG, false);
  1165. return IteratorConstructor;
  1166. };
  1167. var aPossiblePrototype = function (it) {
  1168. if (!isObject(it) && it !== null) {
  1169. throw TypeError("Can't set " + String(it) + ' as a prototype');
  1170. } return it;
  1171. };
  1172. // `Object.setPrototypeOf` method
  1173. // https://tc39.github.io/ecma262/#sec-object.setprototypeof
  1174. // Works with __proto__ only. Old v8 can't work with null proto objects.
  1175. /* eslint-disable no-proto */
  1176. var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
  1177. var CORRECT_SETTER = false;
  1178. var test = {};
  1179. var setter;
  1180. try {
  1181. setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
  1182. setter.call(test, []);
  1183. CORRECT_SETTER = test instanceof Array;
  1184. } catch (error) { /* empty */ }
  1185. return function setPrototypeOf(O, proto) {
  1186. anObject(O);
  1187. aPossiblePrototype(proto);
  1188. if (CORRECT_SETTER) setter.call(O, proto);
  1189. else O.__proto__ = proto;
  1190. return O;
  1191. };
  1192. }() : undefined);
  1193. var IteratorPrototype$2 = iteratorsCore.IteratorPrototype;
  1194. var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS;
  1195. var ITERATOR$1 = wellKnownSymbol('iterator');
  1196. var KEYS = 'keys';
  1197. var VALUES = 'values';
  1198. var ENTRIES = 'entries';
  1199. var returnThis$1 = function () { return this; };
  1200. var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
  1201. createIteratorConstructor(IteratorConstructor, NAME, next);
  1202. var getIterationMethod = function (KIND) {
  1203. if (KIND === DEFAULT && defaultIterator) return defaultIterator;
  1204. if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND];
  1205. switch (KIND) {
  1206. case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
  1207. case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
  1208. case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
  1209. } return function () { return new IteratorConstructor(this); };
  1210. };
  1211. var TO_STRING_TAG = NAME + ' Iterator';
  1212. var INCORRECT_VALUES_NAME = false;
  1213. var IterablePrototype = Iterable.prototype;
  1214. var nativeIterator = IterablePrototype[ITERATOR$1]
  1215. || IterablePrototype['@@iterator']
  1216. || DEFAULT && IterablePrototype[DEFAULT];
  1217. var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT);
  1218. var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
  1219. var CurrentIteratorPrototype, methods, KEY;
  1220. // fix native
  1221. if (anyNativeIterator) {
  1222. CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable()));
  1223. if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) {
  1224. if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) {
  1225. if (objectSetPrototypeOf) {
  1226. objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2);
  1227. } else if (typeof CurrentIteratorPrototype[ITERATOR$1] != 'function') {
  1228. createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR$1, returnThis$1);
  1229. }
  1230. }
  1231. // Set @@toStringTag to native iterators
  1232. setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
  1233. }
  1234. }
  1235. // fix Array#{values, @@iterator}.name in V8 / FF
  1236. if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
  1237. INCORRECT_VALUES_NAME = true;
  1238. defaultIterator = function values() { return nativeIterator.call(this); };
  1239. }
  1240. // define iterator
  1241. if ( IterablePrototype[ITERATOR$1] !== defaultIterator) {
  1242. createNonEnumerableProperty(IterablePrototype, ITERATOR$1, defaultIterator);
  1243. }
  1244. // export additional methods
  1245. if (DEFAULT) {
  1246. methods = {
  1247. values: getIterationMethod(VALUES),
  1248. keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
  1249. entries: getIterationMethod(ENTRIES)
  1250. };
  1251. if (FORCED) for (KEY in methods) {
  1252. if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
  1253. redefine(IterablePrototype, KEY, methods[KEY]);
  1254. }
  1255. } else _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME }, methods);
  1256. }
  1257. return methods;
  1258. };
  1259. var ARRAY_ITERATOR = 'Array Iterator';
  1260. var setInternalState$1 = internalState.set;
  1261. var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR);
  1262. // `Array.prototype.entries` method
  1263. // https://tc39.github.io/ecma262/#sec-array.prototype.entries
  1264. // `Array.prototype.keys` method
  1265. // https://tc39.github.io/ecma262/#sec-array.prototype.keys
  1266. // `Array.prototype.values` method
  1267. // https://tc39.github.io/ecma262/#sec-array.prototype.values
  1268. // `Array.prototype[@@iterator]` method
  1269. // https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator
  1270. // `CreateArrayIterator` internal method
  1271. // https://tc39.github.io/ecma262/#sec-createarrayiterator
  1272. var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
  1273. setInternalState$1(this, {
  1274. type: ARRAY_ITERATOR,
  1275. target: toIndexedObject(iterated), // target
  1276. index: 0, // next index
  1277. kind: kind // kind
  1278. });
  1279. // `%ArrayIteratorPrototype%.next` method
  1280. // https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next
  1281. }, function () {
  1282. var state = getInternalState$1(this);
  1283. var target = state.target;
  1284. var kind = state.kind;
  1285. var index = state.index++;
  1286. if (!target || index >= target.length) {
  1287. state.target = undefined;
  1288. return { value: undefined, done: true };
  1289. }
  1290. if (kind == 'keys') return { value: index, done: false };
  1291. if (kind == 'values') return { value: target[index], done: false };
  1292. return { value: [index, target[index]], done: false };
  1293. }, 'values');
  1294. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1295. addToUnscopables('keys');
  1296. addToUnscopables('values');
  1297. addToUnscopables('entries');
  1298. var nativeJoin = [].join;
  1299. var ES3_STRINGS = indexedObject != Object;
  1300. var SLOPPY_METHOD$1 = sloppyArrayMethod('join', ',');
  1301. // `Array.prototype.join` method
  1302. // https://tc39.github.io/ecma262/#sec-array.prototype.join
  1303. _export({ target: 'Array', proto: true, forced: ES3_STRINGS || SLOPPY_METHOD$1 }, {
  1304. join: function join(separator) {
  1305. return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
  1306. }
  1307. });
  1308. var propertyIsEnumerable = objectPropertyIsEnumerable.f;
  1309. // `Object.{ entries, values }` methods implementation
  1310. var createMethod$2 = function (TO_ENTRIES) {
  1311. return function (it) {
  1312. var O = toIndexedObject(it);
  1313. var keys = objectKeys(O);
  1314. var length = keys.length;
  1315. var i = 0;
  1316. var result = [];
  1317. var key;
  1318. while (length > i) {
  1319. key = keys[i++];
  1320. if (!descriptors || propertyIsEnumerable.call(O, key)) {
  1321. result.push(TO_ENTRIES ? [key, O[key]] : O[key]);
  1322. }
  1323. }
  1324. return result;
  1325. };
  1326. };
  1327. var objectToArray = {
  1328. // `Object.entries` method
  1329. // https://tc39.github.io/ecma262/#sec-object.entries
  1330. entries: createMethod$2(true),
  1331. // `Object.values` method
  1332. // https://tc39.github.io/ecma262/#sec-object.values
  1333. values: createMethod$2(false)
  1334. };
  1335. var $entries = objectToArray.entries;
  1336. // `Object.entries` method
  1337. // https://tc39.github.io/ecma262/#sec-object.entries
  1338. _export({ target: 'Object', stat: true }, {
  1339. entries: function entries(O) {
  1340. return $entries(O);
  1341. }
  1342. });
  1343. var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
  1344. var test = {};
  1345. test[TO_STRING_TAG$1] = 'z';
  1346. var toStringTagSupport = String(test) === '[object z]';
  1347. var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
  1348. // ES3 wrong here
  1349. var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
  1350. // fallback for IE11 Script Access Denied error
  1351. var tryGet = function (it, key) {
  1352. try {
  1353. return it[key];
  1354. } catch (error) { /* empty */ }
  1355. };
  1356. // getting tag from ES6+ `Object.prototype.toString`
  1357. var classof = toStringTagSupport ? classofRaw : function (it) {
  1358. var O, tag, result;
  1359. return it === undefined ? 'Undefined' : it === null ? 'Null'
  1360. // @@toStringTag case
  1361. : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$2)) == 'string' ? tag
  1362. // builtinTag case
  1363. : CORRECT_ARGUMENTS ? classofRaw(O)
  1364. // ES3 arguments fallback
  1365. : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
  1366. };
  1367. // `Object.prototype.toString` method implementation
  1368. // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
  1369. var objectToString = toStringTagSupport ? {}.toString : function toString() {
  1370. return '[object ' + classof(this) + ']';
  1371. };
  1372. // `Object.prototype.toString` method
  1373. // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
  1374. if (!toStringTagSupport) {
  1375. redefine(Object.prototype, 'toString', objectToString, { unsafe: true });
  1376. }
  1377. // `RegExp.prototype.flags` getter implementation
  1378. // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
  1379. var regexpFlags = function () {
  1380. var that = anObject(this);
  1381. var result = '';
  1382. if (that.global) result += 'g';
  1383. if (that.ignoreCase) result += 'i';
  1384. if (that.multiline) result += 'm';
  1385. if (that.dotAll) result += 's';
  1386. if (that.unicode) result += 'u';
  1387. if (that.sticky) result += 'y';
  1388. return result;
  1389. };
  1390. // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
  1391. // so we use an intermediate function.
  1392. function RE(s, f) {
  1393. return RegExp(s, f);
  1394. }
  1395. var UNSUPPORTED_Y = fails(function () {
  1396. // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
  1397. var re = RE('a', 'y');
  1398. re.lastIndex = 2;
  1399. return re.exec('abcd') != null;
  1400. });
  1401. var BROKEN_CARET = fails(function () {
  1402. // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
  1403. var re = RE('^r', 'gy');
  1404. re.lastIndex = 2;
  1405. return re.exec('str') != null;
  1406. });
  1407. var regexpStickyHelpers = {
  1408. UNSUPPORTED_Y: UNSUPPORTED_Y,
  1409. BROKEN_CARET: BROKEN_CARET
  1410. };
  1411. var nativeExec = RegExp.prototype.exec;
  1412. // This always refers to the native implementation, because the
  1413. // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
  1414. // which loads this file before patching the method.
  1415. var nativeReplace = String.prototype.replace;
  1416. var patchedExec = nativeExec;
  1417. var UPDATES_LAST_INDEX_WRONG = (function () {
  1418. var re1 = /a/;
  1419. var re2 = /b*/g;
  1420. nativeExec.call(re1, 'a');
  1421. nativeExec.call(re2, 'a');
  1422. return re1.lastIndex !== 0 || re2.lastIndex !== 0;
  1423. })();
  1424. var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET;
  1425. // nonparticipating capturing group, copied from es5-shim's String#split patch.
  1426. var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
  1427. var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1;
  1428. if (PATCH) {
  1429. patchedExec = function exec(str) {
  1430. var re = this;
  1431. var lastIndex, reCopy, match, i;
  1432. var sticky = UNSUPPORTED_Y$1 && re.sticky;
  1433. var flags = regexpFlags.call(re);
  1434. var source = re.source;
  1435. var charsAdded = 0;
  1436. var strCopy = str;
  1437. if (sticky) {
  1438. flags = flags.replace('y', '');
  1439. if (flags.indexOf('g') === -1) {
  1440. flags += 'g';
  1441. }
  1442. strCopy = String(str).slice(re.lastIndex);
  1443. // Support anchored sticky behavior.
  1444. if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
  1445. source = '(?: ' + source + ')';
  1446. strCopy = ' ' + strCopy;
  1447. charsAdded++;
  1448. }
  1449. // ^(? + rx + ) is needed, in combination with some str slicing, to
  1450. // simulate the 'y' flag.
  1451. reCopy = new RegExp('^(?:' + source + ')', flags);
  1452. }
  1453. if (NPCG_INCLUDED) {
  1454. reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
  1455. }
  1456. if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
  1457. match = nativeExec.call(sticky ? reCopy : re, strCopy);
  1458. if (sticky) {
  1459. if (match) {
  1460. match.input = match.input.slice(charsAdded);
  1461. match[0] = match[0].slice(charsAdded);
  1462. match.index = re.lastIndex;
  1463. re.lastIndex += match[0].length;
  1464. } else re.lastIndex = 0;
  1465. } else if (UPDATES_LAST_INDEX_WRONG && match) {
  1466. re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
  1467. }
  1468. if (NPCG_INCLUDED && match && match.length > 1) {
  1469. // Fix browsers whose `exec` methods don't consistently return `undefined`
  1470. // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
  1471. nativeReplace.call(match[0], reCopy, function () {
  1472. for (i = 1; i < arguments.length - 2; i++) {
  1473. if (arguments[i] === undefined) match[i] = undefined;
  1474. }
  1475. });
  1476. }
  1477. return match;
  1478. };
  1479. }
  1480. var regexpExec = patchedExec;
  1481. _export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, {
  1482. exec: regexpExec
  1483. });
  1484. var MATCH = wellKnownSymbol('match');
  1485. // `IsRegExp` abstract operation
  1486. // https://tc39.github.io/ecma262/#sec-isregexp
  1487. var isRegexp = function (it) {
  1488. var isRegExp;
  1489. return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp');
  1490. };
  1491. var notARegexp = function (it) {
  1492. if (isRegexp(it)) {
  1493. throw TypeError("The method doesn't accept regular expressions");
  1494. } return it;
  1495. };
  1496. var MATCH$1 = wellKnownSymbol('match');
  1497. var correctIsRegexpLogic = function (METHOD_NAME) {
  1498. var regexp = /./;
  1499. try {
  1500. '/./'[METHOD_NAME](regexp);
  1501. } catch (e) {
  1502. try {
  1503. regexp[MATCH$1] = false;
  1504. return '/./'[METHOD_NAME](regexp);
  1505. } catch (f) { /* empty */ }
  1506. } return false;
  1507. };
  1508. // `String.prototype.includes` method
  1509. // https://tc39.github.io/ecma262/#sec-string.prototype.includes
  1510. _export({ target: 'String', proto: true, forced: !correctIsRegexpLogic('includes') }, {
  1511. includes: function includes(searchString /* , position = 0 */) {
  1512. return !!~String(requireObjectCoercible(this))
  1513. .indexOf(notARegexp(searchString), arguments.length > 1 ? arguments[1] : undefined);
  1514. }
  1515. });
  1516. // `String.prototype.{ codePointAt, at }` methods implementation
  1517. var createMethod$3 = function (CONVERT_TO_STRING) {
  1518. return function ($this, pos) {
  1519. var S = String(requireObjectCoercible($this));
  1520. var position = toInteger(pos);
  1521. var size = S.length;
  1522. var first, second;
  1523. if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
  1524. first = S.charCodeAt(position);
  1525. return first < 0xD800 || first > 0xDBFF || position + 1 === size
  1526. || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
  1527. ? CONVERT_TO_STRING ? S.charAt(position) : first
  1528. : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
  1529. };
  1530. };
  1531. var stringMultibyte = {
  1532. // `String.prototype.codePointAt` method
  1533. // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat
  1534. codeAt: createMethod$3(false),
  1535. // `String.prototype.at` method
  1536. // https://github.com/mathiasbynens/String.prototype.at
  1537. charAt: createMethod$3(true)
  1538. };
  1539. var charAt = stringMultibyte.charAt;
  1540. var STRING_ITERATOR = 'String Iterator';
  1541. var setInternalState$2 = internalState.set;
  1542. var getInternalState$2 = internalState.getterFor(STRING_ITERATOR);
  1543. // `String.prototype[@@iterator]` method
  1544. // https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator
  1545. defineIterator(String, 'String', function (iterated) {
  1546. setInternalState$2(this, {
  1547. type: STRING_ITERATOR,
  1548. string: String(iterated),
  1549. index: 0
  1550. });
  1551. // `%StringIteratorPrototype%.next` method
  1552. // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next
  1553. }, function next() {
  1554. var state = getInternalState$2(this);
  1555. var string = state.string;
  1556. var index = state.index;
  1557. var point;
  1558. if (index >= string.length) return { value: undefined, done: true };
  1559. point = charAt(string, index);
  1560. state.index += point.length;
  1561. return { value: point, done: false };
  1562. });
  1563. var SPECIES$2 = wellKnownSymbol('species');
  1564. var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
  1565. // #replace needs built-in support for named groups.
  1566. // #match works fine because it just return the exec results, even if it has
  1567. // a "grops" property.
  1568. var re = /./;
  1569. re.exec = function () {
  1570. var result = [];
  1571. result.groups = { a: '7' };
  1572. return result;
  1573. };
  1574. return ''.replace(re, '$<a>') !== '7';
  1575. });
  1576. // IE <= 11 replaces $0 with the whole match, as if it was $&
  1577. // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
  1578. var REPLACE_KEEPS_$0 = (function () {
  1579. return 'a'.replace(/./, '$0') === '$0';
  1580. })();
  1581. // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
  1582. // Weex JS has frozen built-in prototypes, so use try / catch wrapper
  1583. var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
  1584. var re = /(?:)/;
  1585. var originalExec = re.exec;
  1586. re.exec = function () { return originalExec.apply(this, arguments); };
  1587. var result = 'ab'.split(re);
  1588. return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
  1589. });
  1590. var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
  1591. var SYMBOL = wellKnownSymbol(KEY);
  1592. var DELEGATES_TO_SYMBOL = !fails(function () {
  1593. // String methods call symbol-named RegEp methods
  1594. var O = {};
  1595. O[SYMBOL] = function () { return 7; };
  1596. return ''[KEY](O) != 7;
  1597. });
  1598. var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
  1599. // Symbol-named RegExp methods call .exec
  1600. var execCalled = false;
  1601. var re = /a/;
  1602. if (KEY === 'split') {
  1603. // We can't use real regex here since it causes deoptimization
  1604. // and serious performance degradation in V8
  1605. // https://github.com/zloirock/core-js/issues/306
  1606. re = {};
  1607. // RegExp[@@split] doesn't call the regex's exec method, but first creates
  1608. // a new one. We need to return the patched regex when creating the new one.
  1609. re.constructor = {};
  1610. re.constructor[SPECIES$2] = function () { return re; };
  1611. re.flags = '';
  1612. re[SYMBOL] = /./[SYMBOL];
  1613. }
  1614. re.exec = function () { execCalled = true; return null; };
  1615. re[SYMBOL]('');
  1616. return !execCalled;
  1617. });
  1618. if (
  1619. !DELEGATES_TO_SYMBOL ||
  1620. !DELEGATES_TO_EXEC ||
  1621. (KEY === 'replace' && !(REPLACE_SUPPORTS_NAMED_GROUPS && REPLACE_KEEPS_$0)) ||
  1622. (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
  1623. ) {
  1624. var nativeRegExpMethod = /./[SYMBOL];
  1625. var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
  1626. if (regexp.exec === regexpExec) {
  1627. if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
  1628. // The native String method already delegates to @@method (this
  1629. // polyfilled function), leasing to infinite recursion.
  1630. // We avoid it by directly calling the native @@method method.
  1631. return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
  1632. }
  1633. return { done: true, value: nativeMethod.call(str, regexp, arg2) };
  1634. }
  1635. return { done: false };
  1636. }, { REPLACE_KEEPS_$0: REPLACE_KEEPS_$0 });
  1637. var stringMethod = methods[0];
  1638. var regexMethod = methods[1];
  1639. redefine(String.prototype, KEY, stringMethod);
  1640. redefine(RegExp.prototype, SYMBOL, length == 2
  1641. // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
  1642. // 21.2.5.11 RegExp.prototype[@@split](string, limit)
  1643. ? function (string, arg) { return regexMethod.call(string, this, arg); }
  1644. // 21.2.5.6 RegExp.prototype[@@match](string)
  1645. // 21.2.5.9 RegExp.prototype[@@search](string)
  1646. : function (string) { return regexMethod.call(string, this); }
  1647. );
  1648. }
  1649. if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);
  1650. };
  1651. // `SameValue` abstract operation
  1652. // https://tc39.github.io/ecma262/#sec-samevalue
  1653. var sameValue = Object.is || function is(x, y) {
  1654. // eslint-disable-next-line no-self-compare
  1655. return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
  1656. };
  1657. // `RegExpExec` abstract operation
  1658. // https://tc39.github.io/ecma262/#sec-regexpexec
  1659. var regexpExecAbstract = function (R, S) {
  1660. var exec = R.exec;
  1661. if (typeof exec === 'function') {
  1662. var result = exec.call(R, S);
  1663. if (typeof result !== 'object') {
  1664. throw TypeError('RegExp exec method returned something other than an Object or null');
  1665. }
  1666. return result;
  1667. }
  1668. if (classofRaw(R) !== 'RegExp') {
  1669. throw TypeError('RegExp#exec called on incompatible receiver');
  1670. }
  1671. return regexpExec.call(R, S);
  1672. };
  1673. // @@search logic
  1674. fixRegexpWellKnownSymbolLogic('search', 1, function (SEARCH, nativeSearch, maybeCallNative) {
  1675. return [
  1676. // `String.prototype.search` method
  1677. // https://tc39.github.io/ecma262/#sec-string.prototype.search
  1678. function search(regexp) {
  1679. var O = requireObjectCoercible(this);
  1680. var searcher = regexp == undefined ? undefined : regexp[SEARCH];
  1681. return searcher !== undefined ? searcher.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
  1682. },
  1683. // `RegExp.prototype[@@search]` method
  1684. // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search
  1685. function (regexp) {
  1686. var res = maybeCallNative(nativeSearch, regexp, this);
  1687. if (res.done) return res.value;
  1688. var rx = anObject(regexp);
  1689. var S = String(this);
  1690. var previousLastIndex = rx.lastIndex;
  1691. if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;
  1692. var result = regexpExecAbstract(rx, S);
  1693. if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;
  1694. return result === null ? -1 : result.index;
  1695. }
  1696. ];
  1697. });
  1698. // a string of all valid unicode whitespaces
  1699. // eslint-disable-next-line max-len
  1700. var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
  1701. var whitespace = '[' + whitespaces + ']';
  1702. var ltrim = RegExp('^' + whitespace + whitespace + '*');
  1703. var rtrim = RegExp(whitespace + whitespace + '*$');
  1704. // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
  1705. var createMethod$4 = function (TYPE) {
  1706. return function ($this) {
  1707. var string = String(requireObjectCoercible($this));
  1708. if (TYPE & 1) string = string.replace(ltrim, '');
  1709. if (TYPE & 2) string = string.replace(rtrim, '');
  1710. return string;
  1711. };
  1712. };
  1713. var stringTrim = {
  1714. // `String.prototype.{ trimLeft, trimStart }` methods
  1715. // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart
  1716. start: createMethod$4(1),
  1717. // `String.prototype.{ trimRight, trimEnd }` methods
  1718. // https://tc39.github.io/ecma262/#sec-string.prototype.trimend
  1719. end: createMethod$4(2),
  1720. // `String.prototype.trim` method
  1721. // https://tc39.github.io/ecma262/#sec-string.prototype.trim
  1722. trim: createMethod$4(3)
  1723. };
  1724. var non = '\u200B\u0085\u180E';
  1725. // check that a method works with the correct list
  1726. // of whitespaces and has a correct name
  1727. var forcedStringTrimMethod = function (METHOD_NAME) {
  1728. return fails(function () {
  1729. return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;
  1730. });
  1731. };
  1732. var $trim = stringTrim.trim;
  1733. // `String.prototype.trim` method
  1734. // https://tc39.github.io/ecma262/#sec-string.prototype.trim
  1735. _export({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
  1736. trim: function trim() {
  1737. return $trim(this);
  1738. }
  1739. });
  1740. // iterable DOM collections
  1741. // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
  1742. var domIterables = {
  1743. CSSRuleList: 0,
  1744. CSSStyleDeclaration: 0,
  1745. CSSValueList: 0,
  1746. ClientRectList: 0,
  1747. DOMRectList: 0,
  1748. DOMStringList: 0,
  1749. DOMTokenList: 1,
  1750. DataTransferItemList: 0,
  1751. FileList: 0,
  1752. HTMLAllCollection: 0,
  1753. HTMLCollection: 0,
  1754. HTMLFormElement: 0,
  1755. HTMLSelectElement: 0,
  1756. MediaList: 0,
  1757. MimeTypeArray: 0,
  1758. NamedNodeMap: 0,
  1759. NodeList: 1,
  1760. PaintRequestList: 0,
  1761. Plugin: 0,
  1762. PluginArray: 0,
  1763. SVGLengthList: 0,
  1764. SVGNumberList: 0,
  1765. SVGPathSegList: 0,
  1766. SVGPointList: 0,
  1767. SVGStringList: 0,
  1768. SVGTransformList: 0,
  1769. SourceBufferList: 0,
  1770. StyleSheetList: 0,
  1771. TextTrackCueList: 0,
  1772. TextTrackList: 0,
  1773. TouchList: 0
  1774. };
  1775. var ITERATOR$2 = wellKnownSymbol('iterator');
  1776. var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag');
  1777. var ArrayValues = es_array_iterator.values;
  1778. for (var COLLECTION_NAME in domIterables) {
  1779. var Collection = global_1[COLLECTION_NAME];
  1780. var CollectionPrototype = Collection && Collection.prototype;
  1781. if (CollectionPrototype) {
  1782. // some Chrome versions have non-configurable methods on DOMTokenList
  1783. if (CollectionPrototype[ITERATOR$2] !== ArrayValues) try {
  1784. createNonEnumerableProperty(CollectionPrototype, ITERATOR$2, ArrayValues);
  1785. } catch (error) {
  1786. CollectionPrototype[ITERATOR$2] = ArrayValues;
  1787. }
  1788. if (!CollectionPrototype[TO_STRING_TAG$3]) {
  1789. createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG$3, COLLECTION_NAME);
  1790. }
  1791. if (domIterables[COLLECTION_NAME]) for (var METHOD_NAME in es_array_iterator) {
  1792. // some Chrome versions have non-configurable methods on DOMTokenList
  1793. if (CollectionPrototype[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) try {
  1794. createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, es_array_iterator[METHOD_NAME]);
  1795. } catch (error) {
  1796. CollectionPrototype[METHOD_NAME] = es_array_iterator[METHOD_NAME];
  1797. }
  1798. }
  1799. }
  1800. }
  1801. function _classCallCheck(instance, Constructor) {
  1802. if (!(instance instanceof Constructor)) {
  1803. throw new TypeError("Cannot call a class as a function");
  1804. }
  1805. }
  1806. function _defineProperties(target, props) {
  1807. for (var i = 0; i < props.length; i++) {
  1808. var descriptor = props[i];
  1809. descriptor.enumerable = descriptor.enumerable || false;
  1810. descriptor.configurable = true;
  1811. if ("value" in descriptor) descriptor.writable = true;
  1812. Object.defineProperty(target, descriptor.key, descriptor);
  1813. }
  1814. }
  1815. function _createClass(Constructor, protoProps, staticProps) {
  1816. if (protoProps) _defineProperties(Constructor.prototype, protoProps);
  1817. if (staticProps) _defineProperties(Constructor, staticProps);
  1818. return Constructor;
  1819. }
  1820. function _inherits(subClass, superClass) {
  1821. if (typeof superClass !== "function" && superClass !== null) {
  1822. throw new TypeError("Super expression must either be null or a function");
  1823. }
  1824. subClass.prototype = Object.create(superClass && superClass.prototype, {
  1825. constructor: {
  1826. value: subClass,
  1827. writable: true,
  1828. configurable: true
  1829. }
  1830. });
  1831. if (superClass) _setPrototypeOf(subClass, superClass);
  1832. }
  1833. function _getPrototypeOf(o) {
  1834. _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
  1835. return o.__proto__ || Object.getPrototypeOf(o);
  1836. };
  1837. return _getPrototypeOf(o);
  1838. }
  1839. function _setPrototypeOf(o, p) {
  1840. _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
  1841. o.__proto__ = p;
  1842. return o;
  1843. };
  1844. return _setPrototypeOf(o, p);
  1845. }
  1846. function _assertThisInitialized(self) {
  1847. if (self === void 0) {
  1848. throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  1849. }
  1850. return self;
  1851. }
  1852. function _possibleConstructorReturn(self, call) {
  1853. if (call && (typeof call === "object" || typeof call === "function")) {
  1854. return call;
  1855. }
  1856. return _assertThisInitialized(self);
  1857. }
  1858. function _superPropBase(object, property) {
  1859. while (!Object.prototype.hasOwnProperty.call(object, property)) {
  1860. object = _getPrototypeOf(object);
  1861. if (object === null) break;
  1862. }
  1863. return object;
  1864. }
  1865. function _get(target, property, receiver) {
  1866. if (typeof Reflect !== "undefined" && Reflect.get) {
  1867. _get = Reflect.get;
  1868. } else {
  1869. _get = function _get(target, property, receiver) {
  1870. var base = _superPropBase(target, property);
  1871. if (!base) return;
  1872. var desc = Object.getOwnPropertyDescriptor(base, property);
  1873. if (desc.get) {
  1874. return desc.get.call(receiver);
  1875. }
  1876. return desc.value;
  1877. };
  1878. }
  1879. return _get(target, property, receiver || target);
  1880. }
  1881. function _slicedToArray(arr, i) {
  1882. return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest();
  1883. }
  1884. function _arrayWithHoles(arr) {
  1885. if (Array.isArray(arr)) return arr;
  1886. }
  1887. function _iterableToArrayLimit(arr, i) {
  1888. if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) {
  1889. return;
  1890. }
  1891. var _arr = [];
  1892. var _n = true;
  1893. var _d = false;
  1894. var _e = undefined;
  1895. try {
  1896. for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
  1897. _arr.push(_s.value);
  1898. if (i && _arr.length === i) break;
  1899. }
  1900. } catch (err) {
  1901. _d = true;
  1902. _e = err;
  1903. } finally {
  1904. try {
  1905. if (!_n && _i["return"] != null) _i["return"]();
  1906. } finally {
  1907. if (_d) throw _e;
  1908. }
  1909. }
  1910. return _arr;
  1911. }
  1912. function _nonIterableRest() {
  1913. throw new TypeError("Invalid attempt to destructure non-iterable instance");
  1914. }
  1915. /**
  1916. * @author: aperez <aperez@datadec.es>
  1917. * @version: v2.0.0
  1918. *
  1919. * @update Dennis Hernández <http://djhvscf.github.io/Blog>
  1920. * @update zhixin wen <wenzhixin2010@gmail.com>
  1921. */
  1922. var Utils = $.fn.bootstrapTable.utils;
  1923. var bootstrap = {
  1924. bootstrap3: {
  1925. icons: {
  1926. advancedSearchIcon: 'glyphicon-chevron-down'
  1927. },
  1928. html: {
  1929. modal: "\n <div id=\"avdSearchModal_%s\" class=\"modal fade\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"mySmallModalLabel\" aria-hidden=\"true\">\n <div class=\"modal-dialog modal-xs\">\n <div class=\"modal-content\">\n <div class=\"modal-header\">\n <h4 class=\"modal-title\">%s</h4>\n <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n <span aria-hidden=\"true\">&times;</span>\n </button>\n </div>\n <div class=\"modal-body modal-body-custom\">\n <div class=\"container-fluid\" id=\"avdSearchModalContent_%s\"\n style=\"padding-right: 0px; padding-left: 0px;\" >\n </div>\n </div>\n <div class=\"modal-footer\">\n <button type=\"button\" id=\"btnCloseAvd_%s\" class=\"btn btn-%s\">%s</button>\n </div>\n </div>\n </div>\n </div>\n "
  1930. }
  1931. },
  1932. bootstrap4: {
  1933. icons: {
  1934. advancedSearchIcon: 'fa-chevron-down'
  1935. },
  1936. html: {
  1937. modal: "\n <div id=\"avdSearchModal_%s\" class=\"modal fade\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"mySmallModalLabel\" aria-hidden=\"true\">\n <div class=\"modal-dialog modal-xs\">\n <div class=\"modal-content\">\n <div class=\"modal-header\">\n <h4 class=\"modal-title\">%s</h4>\n <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n <span aria-hidden=\"true\">&times;</span>\n </button>\n </div>\n <div class=\"modal-body modal-body-custom\">\n <div class=\"container-fluid\" id=\"avdSearchModalContent_%s\"\n style=\"padding-right: 0px; padding-left: 0px;\" >\n </div>\n </div>\n <div class=\"modal-footer\">\n <button type=\"button\" id=\"btnCloseAvd_%s\" class=\"btn btn-%s\">%s</button>\n </div>\n </div>\n </div>\n </div>\n "
  1938. }
  1939. },
  1940. bulma: {
  1941. icons: {
  1942. advancedSearchIcon: 'fa-chevron-down'
  1943. },
  1944. html: {
  1945. modal: "\n <div class=\"modal\" id=\"avdSearchModal_%s\">\n <div class=\"modal-background\"></div>\n <div class=\"modal-card\">\n <header class=\"modal-card-head\">\n <p class=\"modal-card-title\">%s</p>\n <button class=\"delete\" aria-label=\"close\"></button>\n </header>\n <section class=\"modal-card-body\" id=\"avdSearchModalContent_%s\"></section>\n <footer class=\"modal-card-foot\">\n <button class=\"button\" id=\"btnCloseAvd_%s\" data-close=\"btn btn-%s\">%s</button>\n </footer>\n </div>\n </div>\n "
  1946. }
  1947. },
  1948. foundation: {
  1949. icons: {
  1950. advancedSearchIcon: 'fa-chevron-down'
  1951. },
  1952. html: {
  1953. modal: "\n <div class=\"reveal\" id=\"avdSearchModal_%s\" data-reveal>\n <h1>%s</h1>\n <div id=\"avdSearchModalContent_%s\">\n \n </div>\n <button class=\"close-button\" data-close aria-label=\"Close modal\" type=\"button\">\n <span aria-hidden=\"true\">&times;</span>\n </button>\n \n <button id=\"btnCloseAvd_%s\" class=\"%s\" type=\"button\">%s</button>\n </div>\n "
  1954. }
  1955. },
  1956. materialize: {
  1957. icons: {
  1958. advancedSearchIcon: 'expand_more'
  1959. },
  1960. html: {
  1961. modal: "\n <div id=\"avdSearchModal_%s\" class=\"modal\">\n <div class=\"modal-content\">\n <h4>%s</h4>\n <div id=\"avdSearchModalContent_%s\">\n \n </div>\n </div>\n <div class=\"modal-footer\">\n <a href=\"javascript:void(0)\"\" id=\"btnCloseAvd_%s\" class=\"modal-close waves-effect waves-green btn-flat %s\">%s</a>\n </div>\n </div>\n "
  1962. }
  1963. },
  1964. semantic: {
  1965. icons: {
  1966. advancedSearchIcon: 'fa-chevron-down'
  1967. },
  1968. html: {
  1969. modal: "\n <div class=\"ui modal\" id=\"avdSearchModal_%s\">\n <i class=\"close icon\"></i>\n <div class=\"header\">\n %s\n </div>\n <div class=\"image content ui form\" id=\"avdSearchModalContent_%s\"></div>\n <div class=\"actions\">\n <div id=\"btnCloseAvd_%s\" class=\"ui black deny button %s\">%s</div>\n </div>\n </div>\n "
  1970. }
  1971. }
  1972. }[$.fn.bootstrapTable.theme];
  1973. $.extend($.fn.bootstrapTable.defaults, {
  1974. advancedSearch: false,
  1975. idForm: 'advancedSearch',
  1976. actionForm: '',
  1977. idTable: undefined,
  1978. onColumnAdvancedSearch: function onColumnAdvancedSearch(field, text) {
  1979. return false;
  1980. }
  1981. });
  1982. $.extend($.fn.bootstrapTable.defaults.icons, {
  1983. advancedSearchIcon: bootstrap.icons.advancedSearchIcon
  1984. });
  1985. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  1986. 'column-advanced-search.bs.table': 'onColumnAdvancedSearch'
  1987. });
  1988. $.extend($.fn.bootstrapTable.locales, {
  1989. formatAdvancedSearch: function formatAdvancedSearch() {
  1990. return 'Advanced search';
  1991. },
  1992. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1993. return 'Close';
  1994. }
  1995. });
  1996. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales);
  1997. $.BootstrapTable =
  1998. /*#__PURE__*/
  1999. function (_$$BootstrapTable) {
  2000. _inherits(_class, _$$BootstrapTable);
  2001. function _class() {
  2002. _classCallCheck(this, _class);
  2003. return _possibleConstructorReturn(this, _getPrototypeOf(_class).apply(this, arguments));
  2004. }
  2005. _createClass(_class, [{
  2006. key: "initToolbar",
  2007. value: function initToolbar() {
  2008. var _this = this;
  2009. var o = this.options;
  2010. this.showToolbar = this.showToolbar || o.search && o.advancedSearch && o.idTable;
  2011. _get(_getPrototypeOf(_class.prototype), "initToolbar", this).call(this);
  2012. if (!o.search || !o.advancedSearch || !o.idTable) {
  2013. return;
  2014. }
  2015. this.$toolbar.find('>.columns').append("\n <button class=\"".concat(this.constants.buttonsClass, " \"\n type=\"button\"\n name=\"advancedSearch\"\n aria-label=\"advanced search\"\n title=\"").concat(o.formatAdvancedSearch(), "\">\n ").concat(this.options.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.advancedSearchIcon) : '', "\n ").concat(this.options.showButtonText ? this.options.formatAdvancedSearch() : '', "\n </button>\n "));
  2016. this.$toolbar.find('button[name="advancedSearch"]').off('click').on('click', function () {
  2017. return _this.showAvdSearch();
  2018. });
  2019. }
  2020. }, {
  2021. key: "showAvdSearch",
  2022. value: function showAvdSearch() {
  2023. var _this2 = this;
  2024. var o = this.options;
  2025. var modalSelector = '#avdSearchModal_' + o.idTable;
  2026. if ($(modalSelector).length <= 0) {
  2027. $('body').append(Utils.sprintf(bootstrap.html.modal, o.idTable, o.formatAdvancedSearch(), o.idTable, o.idTable, o.buttonsClass, o.formatAdvancedCloseButton()));
  2028. var timeoutId = 0;
  2029. $("#avdSearchModalContent_".concat(o.idTable)).append(this.createFormAvd().join(''));
  2030. $("#".concat(o.idForm)).off('keyup blur', 'input').on('keyup blur', 'input', function (e) {
  2031. if (o.sidePagination === 'server') {
  2032. _this2.onColumnAdvancedSearch(e);
  2033. } else {
  2034. clearTimeout(timeoutId);
  2035. timeoutId = setTimeout(function () {
  2036. _this2.onColumnAdvancedSearch(e);
  2037. }, o.searchTimeOut);
  2038. }
  2039. });
  2040. $("#btnCloseAvd_".concat(o.idTable)).click(function () {
  2041. return _this2.hideModal();
  2042. });
  2043. if ($.fn.bootstrapTable.theme === 'bulma') {
  2044. $(modalSelector).find('.delete').off('click').on('click', function () {
  2045. return _this2.hideModal();
  2046. });
  2047. }
  2048. this.showModal();
  2049. } else {
  2050. this.showModal();
  2051. }
  2052. }
  2053. }, {
  2054. key: "showModal",
  2055. value: function showModal() {
  2056. var modalSelector = '#avdSearchModal_' + this.options.idTable;
  2057. if ($.inArray($.fn.bootstrapTable.theme, ['bootstrap3', 'bootstrap4']) !== -1) {
  2058. $(modalSelector).modal();
  2059. } else if ($.fn.bootstrapTable.theme === 'bulma') {
  2060. $(modalSelector).toggleClass('is-active');
  2061. } else if ($.fn.bootstrapTable.theme === 'foundation') {
  2062. if (!this.toolbarModal) {
  2063. // eslint-disable-next-line no-undef
  2064. this.toolbarModal = new Foundation.Reveal($(modalSelector));
  2065. }
  2066. this.toolbarModal.open();
  2067. } else if ($.fn.bootstrapTable.theme === 'materialize') {
  2068. $(modalSelector).modal();
  2069. $(modalSelector).modal('open');
  2070. } else if ($.fn.bootstrapTable.theme === 'semantic') {
  2071. $(modalSelector).modal('show');
  2072. }
  2073. }
  2074. }, {
  2075. key: "hideModal",
  2076. value: function hideModal() {
  2077. var $closeModalButton = $("#avdSearchModal_".concat(this.options.idTable));
  2078. var modalSelector = '#avdSearchModal_' + this.options.idTable;
  2079. if ($.inArray($.fn.bootstrapTable.theme, ['bootstrap3', 'bootstrap4']) !== -1) {
  2080. $closeModalButton.modal('hide');
  2081. } else if ($.fn.bootstrapTable.theme === 'bulma') {
  2082. $('html').toggleClass('is-clipped');
  2083. $(modalSelector).toggleClass('is-active');
  2084. } else if ($.fn.bootstrapTable.theme === 'foundation') {
  2085. this.toolbarModal.close();
  2086. } else if ($.fn.bootstrapTable.theme === 'materialize') {
  2087. $(modalSelector).modal('open');
  2088. } else if ($.fn.bootstrapTable.theme === 'semantic') {
  2089. $(modalSelector).modal('close');
  2090. }
  2091. if (this.options.sidePagination === 'server') {
  2092. this.options.pageNumber = 1;
  2093. this.updatePagination();
  2094. this.trigger('column-advanced-search', this.filterColumnsPartial);
  2095. }
  2096. }
  2097. }, {
  2098. key: "createFormAvd",
  2099. value: function createFormAvd() {
  2100. var o = this.options;
  2101. var html = ["<form class=\"form-horizontal\" id=\"".concat(o.idForm, "\" action=\"").concat(o.actionForm, "\">")];
  2102. var _iteratorNormalCompletion = true;
  2103. var _didIteratorError = false;
  2104. var _iteratorError = undefined;
  2105. try {
  2106. for (var _iterator = this.columns[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
  2107. var column = _step.value;
  2108. if (!column.checkbox && column.visible && column.searchable) {
  2109. html.push("\n <div class=\"form-group row\">\n <label class=\"col-sm-4 control-label\">".concat(column.title, "</label>\n <div class=\"col-sm-6\">\n <input type=\"text\" class=\"form-control ").concat(this.constants.classes.input, "\" name=\"").concat(column.field, "\" placeholder=\"").concat(column.title, "\" id=\"").concat(column.field, "\">\n </div>\n </div>\n "));
  2110. }
  2111. }
  2112. } catch (err) {
  2113. _didIteratorError = true;
  2114. _iteratorError = err;
  2115. } finally {
  2116. try {
  2117. if (!_iteratorNormalCompletion && _iterator.return != null) {
  2118. _iterator.return();
  2119. }
  2120. } finally {
  2121. if (_didIteratorError) {
  2122. throw _iteratorError;
  2123. }
  2124. }
  2125. }
  2126. html.push('</form>');
  2127. return html;
  2128. }
  2129. }, {
  2130. key: "initSearch",
  2131. value: function initSearch() {
  2132. var _this3 = this;
  2133. _get(_getPrototypeOf(_class.prototype), "initSearch", this).call(this);
  2134. if (!this.options.advancedSearch || this.options.sidePagination === 'server') {
  2135. return;
  2136. }
  2137. var fp = $.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial;
  2138. this.data = fp ? this.data.filter(function (item, i) {
  2139. for (var _i = 0, _Object$entries = Object.entries(fp); _i < _Object$entries.length; _i++) {
  2140. var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
  2141. key = _Object$entries$_i[0],
  2142. v = _Object$entries$_i[1];
  2143. var fval = v.toLowerCase();
  2144. var value = item[key];
  2145. var index = _this3.header.fields.indexOf(key);
  2146. value = Utils.calculateObjectValue(_this3.header, _this3.header.formatters[index], [value, item, i], value);
  2147. if (!(index !== -1 && (typeof value === 'string' || typeof value === 'number') && "".concat(value).toLowerCase().includes(fval))) {
  2148. return false;
  2149. }
  2150. }
  2151. return true;
  2152. }) : this.data;
  2153. }
  2154. }, {
  2155. key: "onColumnAdvancedSearch",
  2156. value: function onColumnAdvancedSearch(e) {
  2157. var text = $.trim($(e.currentTarget).val());
  2158. var $field = $(e.currentTarget)[0].id;
  2159. if ($.isEmptyObject(this.filterColumnsPartial)) {
  2160. this.filterColumnsPartial = {};
  2161. }
  2162. if (text) {
  2163. this.filterColumnsPartial[$field] = text;
  2164. } else {
  2165. delete this.filterColumnsPartial[$field];
  2166. }
  2167. if (this.options.sidePagination !== 'server') {
  2168. this.options.pageNumber = 1;
  2169. this.onSearch(e);
  2170. this.updatePagination();
  2171. this.trigger('column-advanced-search', $field, text);
  2172. }
  2173. }
  2174. }]);
  2175. return _class;
  2176. }($.BootstrapTable);
  2177. })));