bootstrap-table-export.js 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754
  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. $ = $ && Object.prototype.hasOwnProperty.call($, '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 UNSCOPABLES = wellKnownSymbol('unscopables');
  1048. var ArrayPrototype = Array.prototype;
  1049. // Array.prototype[@@unscopables]
  1050. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1051. if (ArrayPrototype[UNSCOPABLES] == undefined) {
  1052. objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, {
  1053. configurable: true,
  1054. value: objectCreate(null)
  1055. });
  1056. }
  1057. // add a key to Array.prototype[@@unscopables]
  1058. var addToUnscopables = function (key) {
  1059. ArrayPrototype[UNSCOPABLES][key] = true;
  1060. };
  1061. var $find = arrayIteration.find;
  1062. var FIND = 'find';
  1063. var SKIPS_HOLES = true;
  1064. // Shouldn't skip holes
  1065. if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
  1066. // `Array.prototype.find` method
  1067. // https://tc39.github.io/ecma262/#sec-array.prototype.find
  1068. _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
  1069. find: function find(callbackfn /* , that = undefined */) {
  1070. return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  1071. }
  1072. });
  1073. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1074. addToUnscopables(FIND);
  1075. var correctPrototypeGetter = !fails(function () {
  1076. function F() { /* empty */ }
  1077. F.prototype.constructor = null;
  1078. return Object.getPrototypeOf(new F()) !== F.prototype;
  1079. });
  1080. var IE_PROTO$1 = sharedKey('IE_PROTO');
  1081. var ObjectPrototype$1 = Object.prototype;
  1082. // `Object.getPrototypeOf` method
  1083. // https://tc39.github.io/ecma262/#sec-object.getprototypeof
  1084. var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) {
  1085. O = toObject(O);
  1086. if (has(O, IE_PROTO$1)) return O[IE_PROTO$1];
  1087. if (typeof O.constructor == 'function' && O instanceof O.constructor) {
  1088. return O.constructor.prototype;
  1089. } return O instanceof Object ? ObjectPrototype$1 : null;
  1090. };
  1091. var ITERATOR = wellKnownSymbol('iterator');
  1092. var BUGGY_SAFARI_ITERATORS = false;
  1093. var returnThis = function () { return this; };
  1094. // `%IteratorPrototype%` object
  1095. // https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object
  1096. var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
  1097. if ([].keys) {
  1098. arrayIterator = [].keys();
  1099. // Safari 8 has buggy iterators w/o `next`
  1100. if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
  1101. else {
  1102. PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator));
  1103. if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
  1104. }
  1105. }
  1106. if (IteratorPrototype == undefined) IteratorPrototype = {};
  1107. // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
  1108. if ( !has(IteratorPrototype, ITERATOR)) {
  1109. createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
  1110. }
  1111. var iteratorsCore = {
  1112. IteratorPrototype: IteratorPrototype,
  1113. BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
  1114. };
  1115. var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
  1116. var createIteratorConstructor = function (IteratorConstructor, NAME, next) {
  1117. var TO_STRING_TAG = NAME + ' Iterator';
  1118. IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { next: createPropertyDescriptor(1, next) });
  1119. setToStringTag(IteratorConstructor, TO_STRING_TAG, false);
  1120. return IteratorConstructor;
  1121. };
  1122. var aPossiblePrototype = function (it) {
  1123. if (!isObject(it) && it !== null) {
  1124. throw TypeError("Can't set " + String(it) + ' as a prototype');
  1125. } return it;
  1126. };
  1127. // `Object.setPrototypeOf` method
  1128. // https://tc39.github.io/ecma262/#sec-object.setprototypeof
  1129. // Works with __proto__ only. Old v8 can't work with null proto objects.
  1130. /* eslint-disable no-proto */
  1131. var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
  1132. var CORRECT_SETTER = false;
  1133. var test = {};
  1134. var setter;
  1135. try {
  1136. setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
  1137. setter.call(test, []);
  1138. CORRECT_SETTER = test instanceof Array;
  1139. } catch (error) { /* empty */ }
  1140. return function setPrototypeOf(O, proto) {
  1141. anObject(O);
  1142. aPossiblePrototype(proto);
  1143. if (CORRECT_SETTER) setter.call(O, proto);
  1144. else O.__proto__ = proto;
  1145. return O;
  1146. };
  1147. }() : undefined);
  1148. var IteratorPrototype$2 = iteratorsCore.IteratorPrototype;
  1149. var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS;
  1150. var ITERATOR$1 = wellKnownSymbol('iterator');
  1151. var KEYS = 'keys';
  1152. var VALUES = 'values';
  1153. var ENTRIES = 'entries';
  1154. var returnThis$1 = function () { return this; };
  1155. var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
  1156. createIteratorConstructor(IteratorConstructor, NAME, next);
  1157. var getIterationMethod = function (KIND) {
  1158. if (KIND === DEFAULT && defaultIterator) return defaultIterator;
  1159. if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND];
  1160. switch (KIND) {
  1161. case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
  1162. case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
  1163. case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
  1164. } return function () { return new IteratorConstructor(this); };
  1165. };
  1166. var TO_STRING_TAG = NAME + ' Iterator';
  1167. var INCORRECT_VALUES_NAME = false;
  1168. var IterablePrototype = Iterable.prototype;
  1169. var nativeIterator = IterablePrototype[ITERATOR$1]
  1170. || IterablePrototype['@@iterator']
  1171. || DEFAULT && IterablePrototype[DEFAULT];
  1172. var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT);
  1173. var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
  1174. var CurrentIteratorPrototype, methods, KEY;
  1175. // fix native
  1176. if (anyNativeIterator) {
  1177. CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable()));
  1178. if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) {
  1179. if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) {
  1180. if (objectSetPrototypeOf) {
  1181. objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2);
  1182. } else if (typeof CurrentIteratorPrototype[ITERATOR$1] != 'function') {
  1183. createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR$1, returnThis$1);
  1184. }
  1185. }
  1186. // Set @@toStringTag to native iterators
  1187. setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
  1188. }
  1189. }
  1190. // fix Array#{values, @@iterator}.name in V8 / FF
  1191. if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
  1192. INCORRECT_VALUES_NAME = true;
  1193. defaultIterator = function values() { return nativeIterator.call(this); };
  1194. }
  1195. // define iterator
  1196. if ( IterablePrototype[ITERATOR$1] !== defaultIterator) {
  1197. createNonEnumerableProperty(IterablePrototype, ITERATOR$1, defaultIterator);
  1198. }
  1199. // export additional methods
  1200. if (DEFAULT) {
  1201. methods = {
  1202. values: getIterationMethod(VALUES),
  1203. keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
  1204. entries: getIterationMethod(ENTRIES)
  1205. };
  1206. if (FORCED) for (KEY in methods) {
  1207. if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
  1208. redefine(IterablePrototype, KEY, methods[KEY]);
  1209. }
  1210. } else _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME }, methods);
  1211. }
  1212. return methods;
  1213. };
  1214. var ARRAY_ITERATOR = 'Array Iterator';
  1215. var setInternalState$1 = internalState.set;
  1216. var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR);
  1217. // `Array.prototype.entries` method
  1218. // https://tc39.github.io/ecma262/#sec-array.prototype.entries
  1219. // `Array.prototype.keys` method
  1220. // https://tc39.github.io/ecma262/#sec-array.prototype.keys
  1221. // `Array.prototype.values` method
  1222. // https://tc39.github.io/ecma262/#sec-array.prototype.values
  1223. // `Array.prototype[@@iterator]` method
  1224. // https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator
  1225. // `CreateArrayIterator` internal method
  1226. // https://tc39.github.io/ecma262/#sec-createarrayiterator
  1227. var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
  1228. setInternalState$1(this, {
  1229. type: ARRAY_ITERATOR,
  1230. target: toIndexedObject(iterated), // target
  1231. index: 0, // next index
  1232. kind: kind // kind
  1233. });
  1234. // `%ArrayIteratorPrototype%.next` method
  1235. // https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next
  1236. }, function () {
  1237. var state = getInternalState$1(this);
  1238. var target = state.target;
  1239. var kind = state.kind;
  1240. var index = state.index++;
  1241. if (!target || index >= target.length) {
  1242. state.target = undefined;
  1243. return { value: undefined, done: true };
  1244. }
  1245. if (kind == 'keys') return { value: index, done: false };
  1246. if (kind == 'values') return { value: target[index], done: false };
  1247. return { value: [index, target[index]], done: false };
  1248. }, 'values');
  1249. // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
  1250. addToUnscopables('keys');
  1251. addToUnscopables('values');
  1252. addToUnscopables('entries');
  1253. var sloppyArrayMethod = function (METHOD_NAME, argument) {
  1254. var method = [][METHOD_NAME];
  1255. return !method || !fails(function () {
  1256. // eslint-disable-next-line no-useless-call,no-throw-literal
  1257. method.call(null, argument || function () { throw 1; }, 1);
  1258. });
  1259. };
  1260. var nativeJoin = [].join;
  1261. var ES3_STRINGS = indexedObject != Object;
  1262. var SLOPPY_METHOD = sloppyArrayMethod('join', ',');
  1263. // `Array.prototype.join` method
  1264. // https://tc39.github.io/ecma262/#sec-array.prototype.join
  1265. _export({ target: 'Array', proto: true, forced: ES3_STRINGS || SLOPPY_METHOD }, {
  1266. join: function join(separator) {
  1267. return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
  1268. }
  1269. });
  1270. var $map = arrayIteration.map;
  1271. var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map');
  1272. // FF49- issue
  1273. var USES_TO_LENGTH = HAS_SPECIES_SUPPORT && !fails(function () {
  1274. [].map.call({ length: -1, 0: 1 }, function (it) { throw it; });
  1275. });
  1276. // `Array.prototype.map` method
  1277. // https://tc39.github.io/ecma262/#sec-array.prototype.map
  1278. // with adding support of @@species
  1279. _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {
  1280. map: function map(callbackfn /* , thisArg */) {
  1281. return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  1282. }
  1283. });
  1284. var SPECIES$2 = wellKnownSymbol('species');
  1285. var nativeSlice = [].slice;
  1286. var max$1 = Math.max;
  1287. // `Array.prototype.slice` method
  1288. // https://tc39.github.io/ecma262/#sec-array.prototype.slice
  1289. // fallback for not array-like ES3 strings and DOM objects
  1290. _export({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('slice') }, {
  1291. slice: function slice(start, end) {
  1292. var O = toIndexedObject(this);
  1293. var length = toLength(O.length);
  1294. var k = toAbsoluteIndex(start, length);
  1295. var fin = toAbsoluteIndex(end === undefined ? length : end, length);
  1296. // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
  1297. var Constructor, result, n;
  1298. if (isArray(O)) {
  1299. Constructor = O.constructor;
  1300. // cross-realm fallback
  1301. if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {
  1302. Constructor = undefined;
  1303. } else if (isObject(Constructor)) {
  1304. Constructor = Constructor[SPECIES$2];
  1305. if (Constructor === null) Constructor = undefined;
  1306. }
  1307. if (Constructor === Array || Constructor === undefined) {
  1308. return nativeSlice.call(O, k, fin);
  1309. }
  1310. }
  1311. result = new (Constructor === undefined ? Array : Constructor)(max$1(fin - k, 0));
  1312. for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
  1313. result.length = n;
  1314. return result;
  1315. }
  1316. });
  1317. var nativeAssign = Object.assign;
  1318. var defineProperty$3 = Object.defineProperty;
  1319. // `Object.assign` method
  1320. // https://tc39.github.io/ecma262/#sec-object.assign
  1321. var objectAssign = !nativeAssign || fails(function () {
  1322. // should have correct order of operations (Edge bug)
  1323. if (descriptors && nativeAssign({ b: 1 }, nativeAssign(defineProperty$3({}, 'a', {
  1324. enumerable: true,
  1325. get: function () {
  1326. defineProperty$3(this, 'b', {
  1327. value: 3,
  1328. enumerable: false
  1329. });
  1330. }
  1331. }), { b: 2 })).b !== 1) return true;
  1332. // should work with symbols and should have deterministic property order (V8 bug)
  1333. var A = {};
  1334. var B = {};
  1335. // eslint-disable-next-line no-undef
  1336. var symbol = Symbol();
  1337. var alphabet = 'abcdefghijklmnopqrst';
  1338. A[symbol] = 7;
  1339. alphabet.split('').forEach(function (chr) { B[chr] = chr; });
  1340. return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;
  1341. }) ? function assign(target, source) { // eslint-disable-line no-unused-vars
  1342. var T = toObject(target);
  1343. var argumentsLength = arguments.length;
  1344. var index = 1;
  1345. var getOwnPropertySymbols = objectGetOwnPropertySymbols.f;
  1346. var propertyIsEnumerable = objectPropertyIsEnumerable.f;
  1347. while (argumentsLength > index) {
  1348. var S = indexedObject(arguments[index++]);
  1349. var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);
  1350. var length = keys.length;
  1351. var j = 0;
  1352. var key;
  1353. while (length > j) {
  1354. key = keys[j++];
  1355. if (!descriptors || propertyIsEnumerable.call(S, key)) T[key] = S[key];
  1356. }
  1357. } return T;
  1358. } : nativeAssign;
  1359. // `Object.assign` method
  1360. // https://tc39.github.io/ecma262/#sec-object.assign
  1361. _export({ target: 'Object', stat: true, forced: Object.assign !== objectAssign }, {
  1362. assign: objectAssign
  1363. });
  1364. var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag');
  1365. var test = {};
  1366. test[TO_STRING_TAG$1] = 'z';
  1367. var toStringTagSupport = String(test) === '[object z]';
  1368. var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag');
  1369. // ES3 wrong here
  1370. var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
  1371. // fallback for IE11 Script Access Denied error
  1372. var tryGet = function (it, key) {
  1373. try {
  1374. return it[key];
  1375. } catch (error) { /* empty */ }
  1376. };
  1377. // getting tag from ES6+ `Object.prototype.toString`
  1378. var classof = toStringTagSupport ? classofRaw : function (it) {
  1379. var O, tag, result;
  1380. return it === undefined ? 'Undefined' : it === null ? 'Null'
  1381. // @@toStringTag case
  1382. : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$2)) == 'string' ? tag
  1383. // builtinTag case
  1384. : CORRECT_ARGUMENTS ? classofRaw(O)
  1385. // ES3 arguments fallback
  1386. : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
  1387. };
  1388. // `Object.prototype.toString` method implementation
  1389. // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
  1390. var objectToString = toStringTagSupport ? {}.toString : function toString() {
  1391. return '[object ' + classof(this) + ']';
  1392. };
  1393. // `Object.prototype.toString` method
  1394. // https://tc39.github.io/ecma262/#sec-object.prototype.tostring
  1395. if (!toStringTagSupport) {
  1396. redefine(Object.prototype, 'toString', objectToString, { unsafe: true });
  1397. }
  1398. // `RegExp.prototype.flags` getter implementation
  1399. // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
  1400. var regexpFlags = function () {
  1401. var that = anObject(this);
  1402. var result = '';
  1403. if (that.global) result += 'g';
  1404. if (that.ignoreCase) result += 'i';
  1405. if (that.multiline) result += 'm';
  1406. if (that.dotAll) result += 's';
  1407. if (that.unicode) result += 'u';
  1408. if (that.sticky) result += 'y';
  1409. return result;
  1410. };
  1411. // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
  1412. // so we use an intermediate function.
  1413. function RE(s, f) {
  1414. return RegExp(s, f);
  1415. }
  1416. var UNSUPPORTED_Y = fails(function () {
  1417. // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
  1418. var re = RE('a', 'y');
  1419. re.lastIndex = 2;
  1420. return re.exec('abcd') != null;
  1421. });
  1422. var BROKEN_CARET = fails(function () {
  1423. // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
  1424. var re = RE('^r', 'gy');
  1425. re.lastIndex = 2;
  1426. return re.exec('str') != null;
  1427. });
  1428. var regexpStickyHelpers = {
  1429. UNSUPPORTED_Y: UNSUPPORTED_Y,
  1430. BROKEN_CARET: BROKEN_CARET
  1431. };
  1432. var nativeExec = RegExp.prototype.exec;
  1433. // This always refers to the native implementation, because the
  1434. // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
  1435. // which loads this file before patching the method.
  1436. var nativeReplace = String.prototype.replace;
  1437. var patchedExec = nativeExec;
  1438. var UPDATES_LAST_INDEX_WRONG = (function () {
  1439. var re1 = /a/;
  1440. var re2 = /b*/g;
  1441. nativeExec.call(re1, 'a');
  1442. nativeExec.call(re2, 'a');
  1443. return re1.lastIndex !== 0 || re2.lastIndex !== 0;
  1444. })();
  1445. var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET;
  1446. // nonparticipating capturing group, copied from es5-shim's String#split patch.
  1447. var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
  1448. var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1;
  1449. if (PATCH) {
  1450. patchedExec = function exec(str) {
  1451. var re = this;
  1452. var lastIndex, reCopy, match, i;
  1453. var sticky = UNSUPPORTED_Y$1 && re.sticky;
  1454. var flags = regexpFlags.call(re);
  1455. var source = re.source;
  1456. var charsAdded = 0;
  1457. var strCopy = str;
  1458. if (sticky) {
  1459. flags = flags.replace('y', '');
  1460. if (flags.indexOf('g') === -1) {
  1461. flags += 'g';
  1462. }
  1463. strCopy = String(str).slice(re.lastIndex);
  1464. // Support anchored sticky behavior.
  1465. if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
  1466. source = '(?: ' + source + ')';
  1467. strCopy = ' ' + strCopy;
  1468. charsAdded++;
  1469. }
  1470. // ^(? + rx + ) is needed, in combination with some str slicing, to
  1471. // simulate the 'y' flag.
  1472. reCopy = new RegExp('^(?:' + source + ')', flags);
  1473. }
  1474. if (NPCG_INCLUDED) {
  1475. reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
  1476. }
  1477. if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
  1478. match = nativeExec.call(sticky ? reCopy : re, strCopy);
  1479. if (sticky) {
  1480. if (match) {
  1481. match.input = match.input.slice(charsAdded);
  1482. match[0] = match[0].slice(charsAdded);
  1483. match.index = re.lastIndex;
  1484. re.lastIndex += match[0].length;
  1485. } else re.lastIndex = 0;
  1486. } else if (UPDATES_LAST_INDEX_WRONG && match) {
  1487. re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
  1488. }
  1489. if (NPCG_INCLUDED && match && match.length > 1) {
  1490. // Fix browsers whose `exec` methods don't consistently return `undefined`
  1491. // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
  1492. nativeReplace.call(match[0], reCopy, function () {
  1493. for (i = 1; i < arguments.length - 2; i++) {
  1494. if (arguments[i] === undefined) match[i] = undefined;
  1495. }
  1496. });
  1497. }
  1498. return match;
  1499. };
  1500. }
  1501. var regexpExec = patchedExec;
  1502. _export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, {
  1503. exec: regexpExec
  1504. });
  1505. // `String.prototype.{ codePointAt, at }` methods implementation
  1506. var createMethod$2 = function (CONVERT_TO_STRING) {
  1507. return function ($this, pos) {
  1508. var S = String(requireObjectCoercible($this));
  1509. var position = toInteger(pos);
  1510. var size = S.length;
  1511. var first, second;
  1512. if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
  1513. first = S.charCodeAt(position);
  1514. return first < 0xD800 || first > 0xDBFF || position + 1 === size
  1515. || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
  1516. ? CONVERT_TO_STRING ? S.charAt(position) : first
  1517. : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
  1518. };
  1519. };
  1520. var stringMultibyte = {
  1521. // `String.prototype.codePointAt` method
  1522. // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat
  1523. codeAt: createMethod$2(false),
  1524. // `String.prototype.at` method
  1525. // https://github.com/mathiasbynens/String.prototype.at
  1526. charAt: createMethod$2(true)
  1527. };
  1528. var charAt = stringMultibyte.charAt;
  1529. var STRING_ITERATOR = 'String Iterator';
  1530. var setInternalState$2 = internalState.set;
  1531. var getInternalState$2 = internalState.getterFor(STRING_ITERATOR);
  1532. // `String.prototype[@@iterator]` method
  1533. // https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator
  1534. defineIterator(String, 'String', function (iterated) {
  1535. setInternalState$2(this, {
  1536. type: STRING_ITERATOR,
  1537. string: String(iterated),
  1538. index: 0
  1539. });
  1540. // `%StringIteratorPrototype%.next` method
  1541. // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next
  1542. }, function next() {
  1543. var state = getInternalState$2(this);
  1544. var string = state.string;
  1545. var index = state.index;
  1546. var point;
  1547. if (index >= string.length) return { value: undefined, done: true };
  1548. point = charAt(string, index);
  1549. state.index += point.length;
  1550. return { value: point, done: false };
  1551. });
  1552. var SPECIES$3 = wellKnownSymbol('species');
  1553. var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
  1554. // #replace needs built-in support for named groups.
  1555. // #match works fine because it just return the exec results, even if it has
  1556. // a "grops" property.
  1557. var re = /./;
  1558. re.exec = function () {
  1559. var result = [];
  1560. result.groups = { a: '7' };
  1561. return result;
  1562. };
  1563. return ''.replace(re, '$<a>') !== '7';
  1564. });
  1565. // IE <= 11 replaces $0 with the whole match, as if it was $&
  1566. // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
  1567. var REPLACE_KEEPS_$0 = (function () {
  1568. return 'a'.replace(/./, '$0') === '$0';
  1569. })();
  1570. // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
  1571. // Weex JS has frozen built-in prototypes, so use try / catch wrapper
  1572. var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
  1573. var re = /(?:)/;
  1574. var originalExec = re.exec;
  1575. re.exec = function () { return originalExec.apply(this, arguments); };
  1576. var result = 'ab'.split(re);
  1577. return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
  1578. });
  1579. var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) {
  1580. var SYMBOL = wellKnownSymbol(KEY);
  1581. var DELEGATES_TO_SYMBOL = !fails(function () {
  1582. // String methods call symbol-named RegEp methods
  1583. var O = {};
  1584. O[SYMBOL] = function () { return 7; };
  1585. return ''[KEY](O) != 7;
  1586. });
  1587. var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
  1588. // Symbol-named RegExp methods call .exec
  1589. var execCalled = false;
  1590. var re = /a/;
  1591. if (KEY === 'split') {
  1592. // We can't use real regex here since it causes deoptimization
  1593. // and serious performance degradation in V8
  1594. // https://github.com/zloirock/core-js/issues/306
  1595. re = {};
  1596. // RegExp[@@split] doesn't call the regex's exec method, but first creates
  1597. // a new one. We need to return the patched regex when creating the new one.
  1598. re.constructor = {};
  1599. re.constructor[SPECIES$3] = function () { return re; };
  1600. re.flags = '';
  1601. re[SYMBOL] = /./[SYMBOL];
  1602. }
  1603. re.exec = function () { execCalled = true; return null; };
  1604. re[SYMBOL]('');
  1605. return !execCalled;
  1606. });
  1607. if (
  1608. !DELEGATES_TO_SYMBOL ||
  1609. !DELEGATES_TO_EXEC ||
  1610. (KEY === 'replace' && !(REPLACE_SUPPORTS_NAMED_GROUPS && REPLACE_KEEPS_$0)) ||
  1611. (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
  1612. ) {
  1613. var nativeRegExpMethod = /./[SYMBOL];
  1614. var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
  1615. if (regexp.exec === regexpExec) {
  1616. if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
  1617. // The native String method already delegates to @@method (this
  1618. // polyfilled function), leasing to infinite recursion.
  1619. // We avoid it by directly calling the native @@method method.
  1620. return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
  1621. }
  1622. return { done: true, value: nativeMethod.call(str, regexp, arg2) };
  1623. }
  1624. return { done: false };
  1625. }, { REPLACE_KEEPS_$0: REPLACE_KEEPS_$0 });
  1626. var stringMethod = methods[0];
  1627. var regexMethod = methods[1];
  1628. redefine(String.prototype, KEY, stringMethod);
  1629. redefine(RegExp.prototype, SYMBOL, length == 2
  1630. // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
  1631. // 21.2.5.11 RegExp.prototype[@@split](string, limit)
  1632. ? function (string, arg) { return regexMethod.call(string, this, arg); }
  1633. // 21.2.5.6 RegExp.prototype[@@match](string)
  1634. // 21.2.5.9 RegExp.prototype[@@search](string)
  1635. : function (string) { return regexMethod.call(string, this); }
  1636. );
  1637. }
  1638. if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);
  1639. };
  1640. var charAt$1 = stringMultibyte.charAt;
  1641. // `AdvanceStringIndex` abstract operation
  1642. // https://tc39.github.io/ecma262/#sec-advancestringindex
  1643. var advanceStringIndex = function (S, index, unicode) {
  1644. return index + (unicode ? charAt$1(S, index).length : 1);
  1645. };
  1646. // `RegExpExec` abstract operation
  1647. // https://tc39.github.io/ecma262/#sec-regexpexec
  1648. var regexpExecAbstract = function (R, S) {
  1649. var exec = R.exec;
  1650. if (typeof exec === 'function') {
  1651. var result = exec.call(R, S);
  1652. if (typeof result !== 'object') {
  1653. throw TypeError('RegExp exec method returned something other than an Object or null');
  1654. }
  1655. return result;
  1656. }
  1657. if (classofRaw(R) !== 'RegExp') {
  1658. throw TypeError('RegExp#exec called on incompatible receiver');
  1659. }
  1660. return regexpExec.call(R, S);
  1661. };
  1662. var max$2 = Math.max;
  1663. var min$2 = Math.min;
  1664. var floor$1 = Math.floor;
  1665. var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g;
  1666. var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g;
  1667. var maybeToString = function (it) {
  1668. return it === undefined ? it : String(it);
  1669. };
  1670. // @@replace logic
  1671. fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {
  1672. return [
  1673. // `String.prototype.replace` method
  1674. // https://tc39.github.io/ecma262/#sec-string.prototype.replace
  1675. function replace(searchValue, replaceValue) {
  1676. var O = requireObjectCoercible(this);
  1677. var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
  1678. return replacer !== undefined
  1679. ? replacer.call(searchValue, O, replaceValue)
  1680. : nativeReplace.call(String(O), searchValue, replaceValue);
  1681. },
  1682. // `RegExp.prototype[@@replace]` method
  1683. // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
  1684. function (regexp, replaceValue) {
  1685. if (reason.REPLACE_KEEPS_$0 || (typeof replaceValue === 'string' && replaceValue.indexOf('$0') === -1)) {
  1686. var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);
  1687. if (res.done) return res.value;
  1688. }
  1689. var rx = anObject(regexp);
  1690. var S = String(this);
  1691. var functionalReplace = typeof replaceValue === 'function';
  1692. if (!functionalReplace) replaceValue = String(replaceValue);
  1693. var global = rx.global;
  1694. if (global) {
  1695. var fullUnicode = rx.unicode;
  1696. rx.lastIndex = 0;
  1697. }
  1698. var results = [];
  1699. while (true) {
  1700. var result = regexpExecAbstract(rx, S);
  1701. if (result === null) break;
  1702. results.push(result);
  1703. if (!global) break;
  1704. var matchStr = String(result[0]);
  1705. if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
  1706. }
  1707. var accumulatedResult = '';
  1708. var nextSourcePosition = 0;
  1709. for (var i = 0; i < results.length; i++) {
  1710. result = results[i];
  1711. var matched = String(result[0]);
  1712. var position = max$2(min$2(toInteger(result.index), S.length), 0);
  1713. var captures = [];
  1714. // NOTE: This is equivalent to
  1715. // captures = result.slice(1).map(maybeToString)
  1716. // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
  1717. // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
  1718. // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
  1719. for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
  1720. var namedCaptures = result.groups;
  1721. if (functionalReplace) {
  1722. var replacerArgs = [matched].concat(captures, position, S);
  1723. if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
  1724. var replacement = String(replaceValue.apply(undefined, replacerArgs));
  1725. } else {
  1726. replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
  1727. }
  1728. if (position >= nextSourcePosition) {
  1729. accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
  1730. nextSourcePosition = position + matched.length;
  1731. }
  1732. }
  1733. return accumulatedResult + S.slice(nextSourcePosition);
  1734. }
  1735. ];
  1736. // https://tc39.github.io/ecma262/#sec-getsubstitution
  1737. function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
  1738. var tailPos = position + matched.length;
  1739. var m = captures.length;
  1740. var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
  1741. if (namedCaptures !== undefined) {
  1742. namedCaptures = toObject(namedCaptures);
  1743. symbols = SUBSTITUTION_SYMBOLS;
  1744. }
  1745. return nativeReplace.call(replacement, symbols, function (match, ch) {
  1746. var capture;
  1747. switch (ch.charAt(0)) {
  1748. case '$': return '$';
  1749. case '&': return matched;
  1750. case '`': return str.slice(0, position);
  1751. case "'": return str.slice(tailPos);
  1752. case '<':
  1753. capture = namedCaptures[ch.slice(1, -1)];
  1754. break;
  1755. default: // \d\d?
  1756. var n = +ch;
  1757. if (n === 0) return match;
  1758. if (n > m) {
  1759. var f = floor$1(n / 10);
  1760. if (f === 0) return match;
  1761. if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
  1762. return match;
  1763. }
  1764. capture = captures[n - 1];
  1765. }
  1766. return capture === undefined ? '' : capture;
  1767. });
  1768. }
  1769. });
  1770. var MATCH = wellKnownSymbol('match');
  1771. // `IsRegExp` abstract operation
  1772. // https://tc39.github.io/ecma262/#sec-isregexp
  1773. var isRegexp = function (it) {
  1774. var isRegExp;
  1775. return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp');
  1776. };
  1777. var SPECIES$4 = wellKnownSymbol('species');
  1778. // `SpeciesConstructor` abstract operation
  1779. // https://tc39.github.io/ecma262/#sec-speciesconstructor
  1780. var speciesConstructor = function (O, defaultConstructor) {
  1781. var C = anObject(O).constructor;
  1782. var S;
  1783. return C === undefined || (S = anObject(C)[SPECIES$4]) == undefined ? defaultConstructor : aFunction$1(S);
  1784. };
  1785. var arrayPush = [].push;
  1786. var min$3 = Math.min;
  1787. var MAX_UINT32 = 0xFFFFFFFF;
  1788. // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError
  1789. var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); });
  1790. // @@split logic
  1791. fixRegexpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) {
  1792. var internalSplit;
  1793. if (
  1794. 'abbc'.split(/(b)*/)[1] == 'c' ||
  1795. 'test'.split(/(?:)/, -1).length != 4 ||
  1796. 'ab'.split(/(?:ab)*/).length != 2 ||
  1797. '.'.split(/(.?)(.?)/).length != 4 ||
  1798. '.'.split(/()()/).length > 1 ||
  1799. ''.split(/.?/).length
  1800. ) {
  1801. // based on es5-shim implementation, need to rework it
  1802. internalSplit = function (separator, limit) {
  1803. var string = String(requireObjectCoercible(this));
  1804. var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
  1805. if (lim === 0) return [];
  1806. if (separator === undefined) return [string];
  1807. // If `separator` is not a regex, use native split
  1808. if (!isRegexp(separator)) {
  1809. return nativeSplit.call(string, separator, lim);
  1810. }
  1811. var output = [];
  1812. var flags = (separator.ignoreCase ? 'i' : '') +
  1813. (separator.multiline ? 'm' : '') +
  1814. (separator.unicode ? 'u' : '') +
  1815. (separator.sticky ? 'y' : '');
  1816. var lastLastIndex = 0;
  1817. // Make `global` and avoid `lastIndex` issues by working with a copy
  1818. var separatorCopy = new RegExp(separator.source, flags + 'g');
  1819. var match, lastIndex, lastLength;
  1820. while (match = regexpExec.call(separatorCopy, string)) {
  1821. lastIndex = separatorCopy.lastIndex;
  1822. if (lastIndex > lastLastIndex) {
  1823. output.push(string.slice(lastLastIndex, match.index));
  1824. if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));
  1825. lastLength = match[0].length;
  1826. lastLastIndex = lastIndex;
  1827. if (output.length >= lim) break;
  1828. }
  1829. if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
  1830. }
  1831. if (lastLastIndex === string.length) {
  1832. if (lastLength || !separatorCopy.test('')) output.push('');
  1833. } else output.push(string.slice(lastLastIndex));
  1834. return output.length > lim ? output.slice(0, lim) : output;
  1835. };
  1836. // Chakra, V8
  1837. } else if ('0'.split(undefined, 0).length) {
  1838. internalSplit = function (separator, limit) {
  1839. return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);
  1840. };
  1841. } else internalSplit = nativeSplit;
  1842. return [
  1843. // `String.prototype.split` method
  1844. // https://tc39.github.io/ecma262/#sec-string.prototype.split
  1845. function split(separator, limit) {
  1846. var O = requireObjectCoercible(this);
  1847. var splitter = separator == undefined ? undefined : separator[SPLIT];
  1848. return splitter !== undefined
  1849. ? splitter.call(separator, O, limit)
  1850. : internalSplit.call(String(O), separator, limit);
  1851. },
  1852. // `RegExp.prototype[@@split]` method
  1853. // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split
  1854. //
  1855. // NOTE: This cannot be properly polyfilled in engines that don't support
  1856. // the 'y' flag.
  1857. function (regexp, limit) {
  1858. var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit);
  1859. if (res.done) return res.value;
  1860. var rx = anObject(regexp);
  1861. var S = String(this);
  1862. var C = speciesConstructor(rx, RegExp);
  1863. var unicodeMatching = rx.unicode;
  1864. var flags = (rx.ignoreCase ? 'i' : '') +
  1865. (rx.multiline ? 'm' : '') +
  1866. (rx.unicode ? 'u' : '') +
  1867. (SUPPORTS_Y ? 'y' : 'g');
  1868. // ^(? + rx + ) is needed, in combination with some S slicing, to
  1869. // simulate the 'y' flag.
  1870. var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);
  1871. var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
  1872. if (lim === 0) return [];
  1873. if (S.length === 0) return regexpExecAbstract(splitter, S) === null ? [S] : [];
  1874. var p = 0;
  1875. var q = 0;
  1876. var A = [];
  1877. while (q < S.length) {
  1878. splitter.lastIndex = SUPPORTS_Y ? q : 0;
  1879. var z = regexpExecAbstract(splitter, SUPPORTS_Y ? S : S.slice(q));
  1880. var e;
  1881. if (
  1882. z === null ||
  1883. (e = min$3(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p
  1884. ) {
  1885. q = advanceStringIndex(S, q, unicodeMatching);
  1886. } else {
  1887. A.push(S.slice(p, q));
  1888. if (A.length === lim) return A;
  1889. for (var i = 1; i <= z.length - 1; i++) {
  1890. A.push(z[i]);
  1891. if (A.length === lim) return A;
  1892. }
  1893. q = p = e;
  1894. }
  1895. }
  1896. A.push(S.slice(p));
  1897. return A;
  1898. }
  1899. ];
  1900. }, !SUPPORTS_Y);
  1901. // iterable DOM collections
  1902. // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
  1903. var domIterables = {
  1904. CSSRuleList: 0,
  1905. CSSStyleDeclaration: 0,
  1906. CSSValueList: 0,
  1907. ClientRectList: 0,
  1908. DOMRectList: 0,
  1909. DOMStringList: 0,
  1910. DOMTokenList: 1,
  1911. DataTransferItemList: 0,
  1912. FileList: 0,
  1913. HTMLAllCollection: 0,
  1914. HTMLCollection: 0,
  1915. HTMLFormElement: 0,
  1916. HTMLSelectElement: 0,
  1917. MediaList: 0,
  1918. MimeTypeArray: 0,
  1919. NamedNodeMap: 0,
  1920. NodeList: 1,
  1921. PaintRequestList: 0,
  1922. Plugin: 0,
  1923. PluginArray: 0,
  1924. SVGLengthList: 0,
  1925. SVGNumberList: 0,
  1926. SVGPathSegList: 0,
  1927. SVGPointList: 0,
  1928. SVGStringList: 0,
  1929. SVGTransformList: 0,
  1930. SourceBufferList: 0,
  1931. StyleSheetList: 0,
  1932. TextTrackCueList: 0,
  1933. TextTrackList: 0,
  1934. TouchList: 0
  1935. };
  1936. var $forEach$1 = arrayIteration.forEach;
  1937. // `Array.prototype.forEach` method implementation
  1938. // https://tc39.github.io/ecma262/#sec-array.prototype.foreach
  1939. var arrayForEach = sloppyArrayMethod('forEach') ? function forEach(callbackfn /* , thisArg */) {
  1940. return $forEach$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
  1941. } : [].forEach;
  1942. for (var COLLECTION_NAME in domIterables) {
  1943. var Collection = global_1[COLLECTION_NAME];
  1944. var CollectionPrototype = Collection && Collection.prototype;
  1945. // some Chrome versions have non-configurable methods on DOMTokenList
  1946. if (CollectionPrototype && CollectionPrototype.forEach !== arrayForEach) try {
  1947. createNonEnumerableProperty(CollectionPrototype, 'forEach', arrayForEach);
  1948. } catch (error) {
  1949. CollectionPrototype.forEach = arrayForEach;
  1950. }
  1951. }
  1952. var ITERATOR$2 = wellKnownSymbol('iterator');
  1953. var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag');
  1954. var ArrayValues = es_array_iterator.values;
  1955. for (var COLLECTION_NAME$1 in domIterables) {
  1956. var Collection$1 = global_1[COLLECTION_NAME$1];
  1957. var CollectionPrototype$1 = Collection$1 && Collection$1.prototype;
  1958. if (CollectionPrototype$1) {
  1959. // some Chrome versions have non-configurable methods on DOMTokenList
  1960. if (CollectionPrototype$1[ITERATOR$2] !== ArrayValues) try {
  1961. createNonEnumerableProperty(CollectionPrototype$1, ITERATOR$2, ArrayValues);
  1962. } catch (error) {
  1963. CollectionPrototype$1[ITERATOR$2] = ArrayValues;
  1964. }
  1965. if (!CollectionPrototype$1[TO_STRING_TAG$3]) {
  1966. createNonEnumerableProperty(CollectionPrototype$1, TO_STRING_TAG$3, COLLECTION_NAME$1);
  1967. }
  1968. if (domIterables[COLLECTION_NAME$1]) for (var METHOD_NAME in es_array_iterator) {
  1969. // some Chrome versions have non-configurable methods on DOMTokenList
  1970. if (CollectionPrototype$1[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) try {
  1971. createNonEnumerableProperty(CollectionPrototype$1, METHOD_NAME, es_array_iterator[METHOD_NAME]);
  1972. } catch (error) {
  1973. CollectionPrototype$1[METHOD_NAME] = es_array_iterator[METHOD_NAME];
  1974. }
  1975. }
  1976. }
  1977. }
  1978. function _classCallCheck(instance, Constructor) {
  1979. if (!(instance instanceof Constructor)) {
  1980. throw new TypeError("Cannot call a class as a function");
  1981. }
  1982. }
  1983. function _defineProperties(target, props) {
  1984. for (var i = 0; i < props.length; i++) {
  1985. var descriptor = props[i];
  1986. descriptor.enumerable = descriptor.enumerable || false;
  1987. descriptor.configurable = true;
  1988. if ("value" in descriptor) descriptor.writable = true;
  1989. Object.defineProperty(target, descriptor.key, descriptor);
  1990. }
  1991. }
  1992. function _createClass(Constructor, protoProps, staticProps) {
  1993. if (protoProps) _defineProperties(Constructor.prototype, protoProps);
  1994. if (staticProps) _defineProperties(Constructor, staticProps);
  1995. return Constructor;
  1996. }
  1997. function _defineProperty(obj, key, value) {
  1998. if (key in obj) {
  1999. Object.defineProperty(obj, key, {
  2000. value: value,
  2001. enumerable: true,
  2002. configurable: true,
  2003. writable: true
  2004. });
  2005. } else {
  2006. obj[key] = value;
  2007. }
  2008. return obj;
  2009. }
  2010. function _inherits(subClass, superClass) {
  2011. if (typeof superClass !== "function" && superClass !== null) {
  2012. throw new TypeError("Super expression must either be null or a function");
  2013. }
  2014. subClass.prototype = Object.create(superClass && superClass.prototype, {
  2015. constructor: {
  2016. value: subClass,
  2017. writable: true,
  2018. configurable: true
  2019. }
  2020. });
  2021. if (superClass) _setPrototypeOf(subClass, superClass);
  2022. }
  2023. function _getPrototypeOf(o) {
  2024. _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
  2025. return o.__proto__ || Object.getPrototypeOf(o);
  2026. };
  2027. return _getPrototypeOf(o);
  2028. }
  2029. function _setPrototypeOf(o, p) {
  2030. _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
  2031. o.__proto__ = p;
  2032. return o;
  2033. };
  2034. return _setPrototypeOf(o, p);
  2035. }
  2036. function _assertThisInitialized(self) {
  2037. if (self === void 0) {
  2038. throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  2039. }
  2040. return self;
  2041. }
  2042. function _possibleConstructorReturn(self, call) {
  2043. if (call && (typeof call === "object" || typeof call === "function")) {
  2044. return call;
  2045. }
  2046. return _assertThisInitialized(self);
  2047. }
  2048. function _superPropBase(object, property) {
  2049. while (!Object.prototype.hasOwnProperty.call(object, property)) {
  2050. object = _getPrototypeOf(object);
  2051. if (object === null) break;
  2052. }
  2053. return object;
  2054. }
  2055. function _get(target, property, receiver) {
  2056. if (typeof Reflect !== "undefined" && Reflect.get) {
  2057. _get = Reflect.get;
  2058. } else {
  2059. _get = function _get(target, property, receiver) {
  2060. var base = _superPropBase(target, property);
  2061. if (!base) return;
  2062. var desc = Object.getOwnPropertyDescriptor(base, property);
  2063. if (desc.get) {
  2064. return desc.get.call(receiver);
  2065. }
  2066. return desc.value;
  2067. };
  2068. }
  2069. return _get(target, property, receiver || target);
  2070. }
  2071. /**
  2072. * @author zhixin wen <wenzhixin2010@gmail.com>
  2073. * extensions: https://github.com/hhurz/tableExport.jquery.plugin
  2074. */
  2075. var Utils = $.fn.bootstrapTable.utils;
  2076. var TYPE_NAME = {
  2077. json: 'JSON',
  2078. xml: 'XML',
  2079. png: 'PNG',
  2080. csv: 'CSV',
  2081. txt: 'TXT',
  2082. sql: 'SQL',
  2083. doc: 'MS-Word',
  2084. excel: 'MS-Excel',
  2085. xlsx: 'MS-Excel (OpenXML)',
  2086. powerpoint: 'MS-Powerpoint',
  2087. pdf: 'PDF'
  2088. };
  2089. $.extend($.fn.bootstrapTable.defaults, {
  2090. showExport: false,
  2091. exportDataType: 'basic',
  2092. // basic, all, selected
  2093. exportTypes: ['json', 'xml', 'csv', 'txt', 'sql', 'excel'],
  2094. exportOptions: {
  2095. onCellHtmlData: function onCellHtmlData(cell, rowIndex, colIndex, htmlData) {
  2096. if (cell.is('th')) {
  2097. return cell.find('.th-inner').text();
  2098. }
  2099. return htmlData;
  2100. }
  2101. },
  2102. exportFooter: false
  2103. });
  2104. $.extend($.fn.bootstrapTable.columnDefaults, {
  2105. forceExport: false,
  2106. forceHide: false
  2107. });
  2108. $.extend($.fn.bootstrapTable.defaults.icons, {
  2109. export: {
  2110. bootstrap3: 'glyphicon-export icon-share',
  2111. materialize: 'file_download',
  2112. 'bootstrap-table': 'icon-download'
  2113. }[$.fn.bootstrapTable.theme] || 'fa-download'
  2114. });
  2115. $.extend($.fn.bootstrapTable.locales, {
  2116. formatExport: function formatExport() {
  2117. return 'Export data';
  2118. }
  2119. });
  2120. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales);
  2121. $.fn.bootstrapTable.methods.push('exportTable');
  2122. $.extend($.fn.bootstrapTable.defaults, {
  2123. onExportSaved: function onExportSaved(exportedRows) {
  2124. return false;
  2125. }
  2126. });
  2127. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  2128. 'export-saved.bs.table': 'onExportSaved'
  2129. });
  2130. $.BootstrapTable =
  2131. /*#__PURE__*/
  2132. function (_$$BootstrapTable) {
  2133. _inherits(_class, _$$BootstrapTable);
  2134. function _class() {
  2135. _classCallCheck(this, _class);
  2136. return _possibleConstructorReturn(this, _getPrototypeOf(_class).apply(this, arguments));
  2137. }
  2138. _createClass(_class, [{
  2139. key: "initToolbar",
  2140. value: function initToolbar() {
  2141. var _get2,
  2142. _this = this;
  2143. var o = this.options;
  2144. this.showToolbar = this.showToolbar || o.showExport;
  2145. var $btnGroup = this.$toolbar.find('>.columns');
  2146. if (this.options.showExport) {
  2147. var exportTypes = o.exportTypes;
  2148. if (typeof exportTypes === 'string') {
  2149. var types = exportTypes.slice(1, -1).replace(/ /g, '').split(',');
  2150. exportTypes = types.map(function (t) {
  2151. return t.slice(1, -1);
  2152. });
  2153. }
  2154. this.$export = this.$toolbar.find('>.columns div.export');
  2155. if (this.$export.length) {
  2156. this.updateExportButton();
  2157. return;
  2158. }
  2159. this.buttons = Object.assign(this.buttons, {
  2160. 'export': {
  2161. 'html': exportTypes.length === 1 ? "\n <div class=\"export ".concat(this.constants.classes.buttonsDropdown, "\"\n data-type=\"").concat(exportTypes[0], "\">\n <button class=\"").concat(this.constants.buttonsClass, "\"\n aria-label=\"Export\"\n type=\"button\"\n title=\"").concat(o.formatExport(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.export) : '', "\n ").concat(o.showButtonText ? o.formatExport() : '', "\n </button>\n </div>\n ") : "\n <div class=\"export ".concat(this.constants.classes.buttonsDropdown, "\">\n <button class=\"").concat(this.constants.buttonsClass, " dropdown-toggle\"\n aria-label=\"Export\"\n data-toggle=\"dropdown\"\n type=\"button\"\n title=\"").concat(o.formatExport(), "\">\n ").concat(o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.export) : '', "\n ").concat(o.showButtonText ? o.formatExport() : '', "\n ").concat(this.constants.html.dropdownCaret, "\n </button>\n </div>\n ")
  2162. }
  2163. });
  2164. }
  2165. for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
  2166. args[_key] = arguments[_key];
  2167. }
  2168. (_get2 = _get(_getPrototypeOf(_class.prototype), "initToolbar", this)).call.apply(_get2, [this].concat(args));
  2169. this.$export = this.$toolbar.find('>.columns div.export');
  2170. if (!this.options.showExport) {
  2171. return;
  2172. }
  2173. var $menu = $(this.constants.html.toolbarDropdown.join(''));
  2174. var $items = this.$export;
  2175. if (exportTypes.length > 1) {
  2176. this.$export.append($menu); // themes support
  2177. if ($menu.children().length) {
  2178. $menu = $menu.children().eq(0);
  2179. }
  2180. var _iteratorNormalCompletion = true;
  2181. var _didIteratorError = false;
  2182. var _iteratorError = undefined;
  2183. try {
  2184. for (var _iterator = exportTypes[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
  2185. var type = _step.value;
  2186. if (TYPE_NAME.hasOwnProperty(type)) {
  2187. var $item = $(Utils.sprintf(this.constants.html.pageDropdownItem, '', TYPE_NAME[type]));
  2188. $item.attr('data-type', type);
  2189. $menu.append($item);
  2190. }
  2191. }
  2192. } catch (err) {
  2193. _didIteratorError = true;
  2194. _iteratorError = err;
  2195. } finally {
  2196. try {
  2197. if (!_iteratorNormalCompletion && _iterator.return != null) {
  2198. _iterator.return();
  2199. }
  2200. } finally {
  2201. if (_didIteratorError) {
  2202. throw _iteratorError;
  2203. }
  2204. }
  2205. }
  2206. $items = $menu.children();
  2207. }
  2208. this.updateExportButton();
  2209. $items.click(function (e) {
  2210. e.preventDefault();
  2211. var type = $(e.currentTarget).data('type');
  2212. var exportOptions = {
  2213. type: type,
  2214. escape: false
  2215. };
  2216. _this.exportTable(exportOptions);
  2217. });
  2218. this.handleToolbar();
  2219. }
  2220. }, {
  2221. key: "handleToolbar",
  2222. value: function handleToolbar() {
  2223. if (!this.$export) {
  2224. return;
  2225. }
  2226. if ($.fn.bootstrapTable.theme === 'foundation') {
  2227. this.$export.find('.dropdown-pane').attr('id', 'toolbar-export-id');
  2228. } else if ($.fn.bootstrapTable.theme === 'materialize') {
  2229. this.$export.find('.dropdown-content').attr('id', 'toolbar-export-id');
  2230. }
  2231. if (_get(_getPrototypeOf(_class.prototype), "handleToolbar", this)) {
  2232. _get(_getPrototypeOf(_class.prototype), "handleToolbar", this).call(this);
  2233. }
  2234. }
  2235. }, {
  2236. key: "exportTable",
  2237. value: function exportTable(options) {
  2238. var _this2 = this;
  2239. var o = this.options;
  2240. var stateField = this.header.stateField;
  2241. var isCardView = o.cardView;
  2242. var doExport = function doExport(callback) {
  2243. if (stateField) {
  2244. _this2.hideColumn(stateField);
  2245. }
  2246. if (isCardView) {
  2247. _this2.toggleView();
  2248. }
  2249. _this2.columns.forEach(function (row) {
  2250. if (row.forceHide) {
  2251. _this2.hideColumn(row.field);
  2252. }
  2253. });
  2254. var data = _this2.getData();
  2255. if (o.exportFooter) {
  2256. var $footerRow = _this2.$tableFooter.find('tr').first();
  2257. var footerData = {};
  2258. var footerHtml = [];
  2259. $.each($footerRow.children(), function (index, footerCell) {
  2260. var footerCellHtml = $(footerCell).children('.th-inner').first().html();
  2261. footerData[_this2.columns[index].field] = footerCellHtml === '&nbsp;' ? null : footerCellHtml; // grab footer cell text into cell index-based array
  2262. footerHtml.push(footerCellHtml);
  2263. });
  2264. _this2.$body.append(_this2.$body.children().last()[0].outerHTML);
  2265. var $lastTableRow = _this2.$body.children().last();
  2266. $.each($lastTableRow.children(), function (index, lastTableRowCell) {
  2267. $(lastTableRowCell).html(footerHtml[index]);
  2268. });
  2269. }
  2270. var hiddenColumns = _this2.getHiddenColumns();
  2271. hiddenColumns.forEach(function (row) {
  2272. if (row.forceExport) {
  2273. _this2.showColumn(row.field);
  2274. }
  2275. });
  2276. if (typeof o.exportOptions.fileName === 'function') {
  2277. options.fileName = o.exportOptions.fileName();
  2278. }
  2279. _this2.$el.tableExport($.extend({
  2280. onAfterSaveToFile: function onAfterSaveToFile() {
  2281. if (o.exportFooter) {
  2282. _this2.load(data);
  2283. }
  2284. if (stateField) {
  2285. _this2.showColumn(stateField);
  2286. }
  2287. if (isCardView) {
  2288. _this2.toggleView();
  2289. }
  2290. hiddenColumns.forEach(function (row) {
  2291. if (row.forceExport) {
  2292. _this2.hideColumn(row.field);
  2293. }
  2294. });
  2295. _this2.columns.forEach(function (row) {
  2296. if (row.forceHide) {
  2297. _this2.showColumn(row.field);
  2298. }
  2299. });
  2300. if (callback) callback();
  2301. }
  2302. }, o.exportOptions, options));
  2303. };
  2304. if (o.exportDataType === 'all' && o.pagination) {
  2305. var eventName = o.sidePagination === 'server' ? 'post-body.bs.table' : 'page-change.bs.table';
  2306. var virtualScroll = this.options.virtualScroll;
  2307. this.$el.one(eventName, function () {
  2308. setTimeout(function () {
  2309. doExport(function () {
  2310. _this2.options.virtualScroll = virtualScroll;
  2311. _this2.togglePagination();
  2312. });
  2313. }, 0);
  2314. });
  2315. this.options.virtualScroll = false;
  2316. this.togglePagination();
  2317. this.trigger('export-saved', this.getData());
  2318. } else if (o.exportDataType === 'selected') {
  2319. var data = this.getData();
  2320. var selectedData = this.getSelections();
  2321. var pagination = o.pagination;
  2322. if (!selectedData.length) {
  2323. return;
  2324. }
  2325. if (o.sidePagination === 'server') {
  2326. data = _defineProperty({
  2327. total: o.totalRows
  2328. }, this.options.dataField, data);
  2329. selectedData = _defineProperty({
  2330. total: selectedData.length
  2331. }, this.options.dataField, selectedData);
  2332. }
  2333. this.load(selectedData);
  2334. if (pagination) {
  2335. this.togglePagination();
  2336. }
  2337. doExport(function () {
  2338. if (pagination) {
  2339. _this2.togglePagination();
  2340. }
  2341. _this2.load(data);
  2342. });
  2343. this.trigger('export-saved', selectedData);
  2344. } else {
  2345. doExport();
  2346. this.trigger('export-saved', this.getData(true));
  2347. }
  2348. }
  2349. }, {
  2350. key: "updateSelected",
  2351. value: function updateSelected() {
  2352. _get(_getPrototypeOf(_class.prototype), "updateSelected", this).call(this);
  2353. this.updateExportButton();
  2354. }
  2355. }, {
  2356. key: "updateExportButton",
  2357. value: function updateExportButton() {
  2358. if (this.options.exportDataType === 'selected') {
  2359. this.$export.find('> button').prop('disabled', !this.getSelections().length);
  2360. }
  2361. }
  2362. }]);
  2363. return _class;
  2364. }($.BootstrapTable);
  2365. })));