bootstrap-table-ru-RU.js 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359
  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 = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jQuery));
  5. })(this, (function ($$1) { 'use strict';
  6. function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
  7. var $__default = /*#__PURE__*/_interopDefaultLegacy($$1);
  8. var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
  9. var check = function (it) {
  10. return it && it.Math == Math && it;
  11. };
  12. // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
  13. var global$a =
  14. // eslint-disable-next-line es/no-global-this -- safe
  15. check(typeof globalThis == 'object' && globalThis) ||
  16. check(typeof window == 'object' && window) ||
  17. // eslint-disable-next-line no-restricted-globals -- safe
  18. check(typeof self == 'object' && self) ||
  19. check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
  20. // eslint-disable-next-line no-new-func -- fallback
  21. (function () { return this; })() || Function('return this')();
  22. var objectGetOwnPropertyDescriptor = {};
  23. var fails$b = function (exec) {
  24. try {
  25. return !!exec();
  26. } catch (error) {
  27. return true;
  28. }
  29. };
  30. var fails$a = fails$b;
  31. // Detect IE8's incomplete defineProperty implementation
  32. var descriptors = !fails$a(function () {
  33. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  34. return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
  35. });
  36. var fails$9 = fails$b;
  37. var functionBindNative = !fails$9(function () {
  38. // eslint-disable-next-line es/no-function-prototype-bind -- safe
  39. var test = (function () { /* empty */ }).bind();
  40. // eslint-disable-next-line no-prototype-builtins -- safe
  41. return typeof test != 'function' || test.hasOwnProperty('prototype');
  42. });
  43. var NATIVE_BIND$1 = functionBindNative;
  44. var call$4 = Function.prototype.call;
  45. var functionCall = NATIVE_BIND$1 ? call$4.bind(call$4) : function () {
  46. return call$4.apply(call$4, arguments);
  47. };
  48. var objectPropertyIsEnumerable = {};
  49. var $propertyIsEnumerable = {}.propertyIsEnumerable;
  50. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  51. var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
  52. // Nashorn ~ JDK8 bug
  53. var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
  54. // `Object.prototype.propertyIsEnumerable` method implementation
  55. // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
  56. objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
  57. var descriptor = getOwnPropertyDescriptor$1(this, V);
  58. return !!descriptor && descriptor.enumerable;
  59. } : $propertyIsEnumerable;
  60. var createPropertyDescriptor$3 = function (bitmap, value) {
  61. return {
  62. enumerable: !(bitmap & 1),
  63. configurable: !(bitmap & 2),
  64. writable: !(bitmap & 4),
  65. value: value
  66. };
  67. };
  68. var NATIVE_BIND = functionBindNative;
  69. var FunctionPrototype$1 = Function.prototype;
  70. var call$3 = FunctionPrototype$1.call;
  71. var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$3, call$3);
  72. var functionUncurryThisRaw = function (fn) {
  73. return NATIVE_BIND ? uncurryThisWithBind(fn) : function () {
  74. return call$3.apply(fn, arguments);
  75. };
  76. };
  77. var uncurryThisRaw$1 = functionUncurryThisRaw;
  78. var toString$1 = uncurryThisRaw$1({}.toString);
  79. var stringSlice = uncurryThisRaw$1(''.slice);
  80. var classofRaw$2 = function (it) {
  81. return stringSlice(toString$1(it), 8, -1);
  82. };
  83. var classofRaw$1 = classofRaw$2;
  84. var uncurryThisRaw = functionUncurryThisRaw;
  85. var functionUncurryThis = function (fn) {
  86. // Nashorn bug:
  87. // https://github.com/zloirock/core-js/issues/1128
  88. // https://github.com/zloirock/core-js/issues/1130
  89. if (classofRaw$1(fn) === 'Function') return uncurryThisRaw(fn);
  90. };
  91. var uncurryThis$7 = functionUncurryThis;
  92. var fails$8 = fails$b;
  93. var classof$3 = classofRaw$2;
  94. var $Object$3 = Object;
  95. var split = uncurryThis$7(''.split);
  96. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  97. var indexedObject = fails$8(function () {
  98. // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  99. // eslint-disable-next-line no-prototype-builtins -- safe
  100. return !$Object$3('z').propertyIsEnumerable(0);
  101. }) ? function (it) {
  102. return classof$3(it) == 'String' ? split(it, '') : $Object$3(it);
  103. } : $Object$3;
  104. // we can't use just `it == null` since of `document.all` special case
  105. // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
  106. var isNullOrUndefined$2 = function (it) {
  107. return it === null || it === undefined;
  108. };
  109. var isNullOrUndefined$1 = isNullOrUndefined$2;
  110. var $TypeError$6 = TypeError;
  111. // `RequireObjectCoercible` abstract operation
  112. // https://tc39.es/ecma262/#sec-requireobjectcoercible
  113. var requireObjectCoercible$2 = function (it) {
  114. if (isNullOrUndefined$1(it)) throw $TypeError$6("Can't call method on " + it);
  115. return it;
  116. };
  117. // toObject with fallback for non-array-like ES3 strings
  118. var IndexedObject = indexedObject;
  119. var requireObjectCoercible$1 = requireObjectCoercible$2;
  120. var toIndexedObject$3 = function (it) {
  121. return IndexedObject(requireObjectCoercible$1(it));
  122. };
  123. var documentAll$2 = typeof document == 'object' && document.all;
  124. // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
  125. var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
  126. var documentAll_1 = {
  127. all: documentAll$2,
  128. IS_HTMLDDA: IS_HTMLDDA
  129. };
  130. var $documentAll$1 = documentAll_1;
  131. var documentAll$1 = $documentAll$1.all;
  132. // `IsCallable` abstract operation
  133. // https://tc39.es/ecma262/#sec-iscallable
  134. var isCallable$c = $documentAll$1.IS_HTMLDDA ? function (argument) {
  135. return typeof argument == 'function' || argument === documentAll$1;
  136. } : function (argument) {
  137. return typeof argument == 'function';
  138. };
  139. var isCallable$b = isCallable$c;
  140. var $documentAll = documentAll_1;
  141. var documentAll = $documentAll.all;
  142. var isObject$7 = $documentAll.IS_HTMLDDA ? function (it) {
  143. return typeof it == 'object' ? it !== null : isCallable$b(it) || it === documentAll;
  144. } : function (it) {
  145. return typeof it == 'object' ? it !== null : isCallable$b(it);
  146. };
  147. var global$9 = global$a;
  148. var isCallable$a = isCallable$c;
  149. var aFunction = function (argument) {
  150. return isCallable$a(argument) ? argument : undefined;
  151. };
  152. var getBuiltIn$4 = function (namespace, method) {
  153. return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
  154. };
  155. var uncurryThis$6 = functionUncurryThis;
  156. var objectIsPrototypeOf = uncurryThis$6({}.isPrototypeOf);
  157. var getBuiltIn$3 = getBuiltIn$4;
  158. var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
  159. var global$8 = global$a;
  160. var userAgent = engineUserAgent;
  161. var process = global$8.process;
  162. var Deno = global$8.Deno;
  163. var versions = process && process.versions || Deno && Deno.version;
  164. var v8 = versions && versions.v8;
  165. var match, version;
  166. if (v8) {
  167. match = v8.split('.');
  168. // in old Chrome, versions of V8 isn't V8 = Chrome / 10
  169. // but their correct versions are not interesting for us
  170. version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
  171. }
  172. // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
  173. // so check `userAgent` even if `.v8` exists, but 0
  174. if (!version && userAgent) {
  175. match = userAgent.match(/Edge\/(\d+)/);
  176. if (!match || match[1] >= 74) {
  177. match = userAgent.match(/Chrome\/(\d+)/);
  178. if (match) version = +match[1];
  179. }
  180. }
  181. var engineV8Version = version;
  182. /* eslint-disable es/no-symbol -- required for testing */
  183. var V8_VERSION$2 = engineV8Version;
  184. var fails$7 = fails$b;
  185. // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
  186. var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$7(function () {
  187. var symbol = Symbol();
  188. // Chrome 38 Symbol has incorrect toString conversion
  189. // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
  190. return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
  191. // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
  192. !Symbol.sham && V8_VERSION$2 && V8_VERSION$2 < 41;
  193. });
  194. /* eslint-disable es/no-symbol -- required for testing */
  195. var NATIVE_SYMBOL$1 = symbolConstructorDetection;
  196. var useSymbolAsUid = NATIVE_SYMBOL$1
  197. && !Symbol.sham
  198. && typeof Symbol.iterator == 'symbol';
  199. var getBuiltIn$2 = getBuiltIn$4;
  200. var isCallable$9 = isCallable$c;
  201. var isPrototypeOf = objectIsPrototypeOf;
  202. var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
  203. var $Object$2 = Object;
  204. var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
  205. return typeof it == 'symbol';
  206. } : function (it) {
  207. var $Symbol = getBuiltIn$2('Symbol');
  208. return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
  209. };
  210. var $String$1 = String;
  211. var tryToString$1 = function (argument) {
  212. try {
  213. return $String$1(argument);
  214. } catch (error) {
  215. return 'Object';
  216. }
  217. };
  218. var isCallable$8 = isCallable$c;
  219. var tryToString = tryToString$1;
  220. var $TypeError$5 = TypeError;
  221. // `Assert: IsCallable(argument) is true`
  222. var aCallable$1 = function (argument) {
  223. if (isCallable$8(argument)) return argument;
  224. throw $TypeError$5(tryToString(argument) + ' is not a function');
  225. };
  226. var aCallable = aCallable$1;
  227. var isNullOrUndefined = isNullOrUndefined$2;
  228. // `GetMethod` abstract operation
  229. // https://tc39.es/ecma262/#sec-getmethod
  230. var getMethod$1 = function (V, P) {
  231. var func = V[P];
  232. return isNullOrUndefined(func) ? undefined : aCallable(func);
  233. };
  234. var call$2 = functionCall;
  235. var isCallable$7 = isCallable$c;
  236. var isObject$6 = isObject$7;
  237. var $TypeError$4 = TypeError;
  238. // `OrdinaryToPrimitive` abstract operation
  239. // https://tc39.es/ecma262/#sec-ordinarytoprimitive
  240. var ordinaryToPrimitive$1 = function (input, pref) {
  241. var fn, val;
  242. if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$2(fn, input))) return val;
  243. if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$2(fn, input))) return val;
  244. if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$2(fn, input))) return val;
  245. throw $TypeError$4("Can't convert object to primitive value");
  246. };
  247. var shared$3 = {exports: {}};
  248. var global$7 = global$a;
  249. // eslint-disable-next-line es/no-object-defineproperty -- safe
  250. var defineProperty$1 = Object.defineProperty;
  251. var defineGlobalProperty$3 = function (key, value) {
  252. try {
  253. defineProperty$1(global$7, key, { value: value, configurable: true, writable: true });
  254. } catch (error) {
  255. global$7[key] = value;
  256. } return value;
  257. };
  258. var global$6 = global$a;
  259. var defineGlobalProperty$2 = defineGlobalProperty$3;
  260. var SHARED = '__core-js_shared__';
  261. var store$3 = global$6[SHARED] || defineGlobalProperty$2(SHARED, {});
  262. var sharedStore = store$3;
  263. var store$2 = sharedStore;
  264. (shared$3.exports = function (key, value) {
  265. return store$2[key] || (store$2[key] = value !== undefined ? value : {});
  266. })('versions', []).push({
  267. version: '3.25.5',
  268. mode: 'global',
  269. copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
  270. license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
  271. source: 'https://github.com/zloirock/core-js'
  272. });
  273. var requireObjectCoercible = requireObjectCoercible$2;
  274. var $Object$1 = Object;
  275. // `ToObject` abstract operation
  276. // https://tc39.es/ecma262/#sec-toobject
  277. var toObject$2 = function (argument) {
  278. return $Object$1(requireObjectCoercible(argument));
  279. };
  280. var uncurryThis$5 = functionUncurryThis;
  281. var toObject$1 = toObject$2;
  282. var hasOwnProperty = uncurryThis$5({}.hasOwnProperty);
  283. // `HasOwnProperty` abstract operation
  284. // https://tc39.es/ecma262/#sec-hasownproperty
  285. // eslint-disable-next-line es/no-object-hasown -- safe
  286. var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
  287. return hasOwnProperty(toObject$1(it), key);
  288. };
  289. var uncurryThis$4 = functionUncurryThis;
  290. var id = 0;
  291. var postfix = Math.random();
  292. var toString = uncurryThis$4(1.0.toString);
  293. var uid$2 = function (key) {
  294. return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
  295. };
  296. var global$5 = global$a;
  297. var shared$2 = shared$3.exports;
  298. var hasOwn$6 = hasOwnProperty_1;
  299. var uid$1 = uid$2;
  300. var NATIVE_SYMBOL = symbolConstructorDetection;
  301. var USE_SYMBOL_AS_UID = useSymbolAsUid;
  302. var WellKnownSymbolsStore = shared$2('wks');
  303. var Symbol$1 = global$5.Symbol;
  304. var symbolFor = Symbol$1 && Symbol$1['for'];
  305. var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
  306. var wellKnownSymbol$6 = function (name) {
  307. if (!hasOwn$6(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
  308. var description = 'Symbol.' + name;
  309. if (NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)) {
  310. WellKnownSymbolsStore[name] = Symbol$1[name];
  311. } else if (USE_SYMBOL_AS_UID && symbolFor) {
  312. WellKnownSymbolsStore[name] = symbolFor(description);
  313. } else {
  314. WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
  315. }
  316. } return WellKnownSymbolsStore[name];
  317. };
  318. var call$1 = functionCall;
  319. var isObject$5 = isObject$7;
  320. var isSymbol$1 = isSymbol$2;
  321. var getMethod = getMethod$1;
  322. var ordinaryToPrimitive = ordinaryToPrimitive$1;
  323. var wellKnownSymbol$5 = wellKnownSymbol$6;
  324. var $TypeError$3 = TypeError;
  325. var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
  326. // `ToPrimitive` abstract operation
  327. // https://tc39.es/ecma262/#sec-toprimitive
  328. var toPrimitive$1 = function (input, pref) {
  329. if (!isObject$5(input) || isSymbol$1(input)) return input;
  330. var exoticToPrim = getMethod(input, TO_PRIMITIVE);
  331. var result;
  332. if (exoticToPrim) {
  333. if (pref === undefined) pref = 'default';
  334. result = call$1(exoticToPrim, input, pref);
  335. if (!isObject$5(result) || isSymbol$1(result)) return result;
  336. throw $TypeError$3("Can't convert object to primitive value");
  337. }
  338. if (pref === undefined) pref = 'number';
  339. return ordinaryToPrimitive(input, pref);
  340. };
  341. var toPrimitive = toPrimitive$1;
  342. var isSymbol = isSymbol$2;
  343. // `ToPropertyKey` abstract operation
  344. // https://tc39.es/ecma262/#sec-topropertykey
  345. var toPropertyKey$3 = function (argument) {
  346. var key = toPrimitive(argument, 'string');
  347. return isSymbol(key) ? key : key + '';
  348. };
  349. var global$4 = global$a;
  350. var isObject$4 = isObject$7;
  351. var document$1 = global$4.document;
  352. // typeof document.createElement is 'object' in old IE
  353. var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
  354. var documentCreateElement = function (it) {
  355. return EXISTS$1 ? document$1.createElement(it) : {};
  356. };
  357. var DESCRIPTORS$6 = descriptors;
  358. var fails$6 = fails$b;
  359. var createElement = documentCreateElement;
  360. // Thanks to IE8 for its funny defineProperty
  361. var ie8DomDefine = !DESCRIPTORS$6 && !fails$6(function () {
  362. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  363. return Object.defineProperty(createElement('div'), 'a', {
  364. get: function () { return 7; }
  365. }).a != 7;
  366. });
  367. var DESCRIPTORS$5 = descriptors;
  368. var call = functionCall;
  369. var propertyIsEnumerableModule = objectPropertyIsEnumerable;
  370. var createPropertyDescriptor$2 = createPropertyDescriptor$3;
  371. var toIndexedObject$2 = toIndexedObject$3;
  372. var toPropertyKey$2 = toPropertyKey$3;
  373. var hasOwn$5 = hasOwnProperty_1;
  374. var IE8_DOM_DEFINE$1 = ie8DomDefine;
  375. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  376. var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
  377. // `Object.getOwnPropertyDescriptor` method
  378. // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
  379. objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
  380. O = toIndexedObject$2(O);
  381. P = toPropertyKey$2(P);
  382. if (IE8_DOM_DEFINE$1) try {
  383. return $getOwnPropertyDescriptor$1(O, P);
  384. } catch (error) { /* empty */ }
  385. if (hasOwn$5(O, P)) return createPropertyDescriptor$2(!call(propertyIsEnumerableModule.f, O, P), O[P]);
  386. };
  387. var objectDefineProperty = {};
  388. var DESCRIPTORS$4 = descriptors;
  389. var fails$5 = fails$b;
  390. // V8 ~ Chrome 36-
  391. // https://bugs.chromium.org/p/v8/issues/detail?id=3334
  392. var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$5(function () {
  393. // eslint-disable-next-line es/no-object-defineproperty -- required for testing
  394. return Object.defineProperty(function () { /* empty */ }, 'prototype', {
  395. value: 42,
  396. writable: false
  397. }).prototype != 42;
  398. });
  399. var isObject$3 = isObject$7;
  400. var $String = String;
  401. var $TypeError$2 = TypeError;
  402. // `Assert: Type(argument) is Object`
  403. var anObject$2 = function (argument) {
  404. if (isObject$3(argument)) return argument;
  405. throw $TypeError$2($String(argument) + ' is not an object');
  406. };
  407. var DESCRIPTORS$3 = descriptors;
  408. var IE8_DOM_DEFINE = ie8DomDefine;
  409. var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
  410. var anObject$1 = anObject$2;
  411. var toPropertyKey$1 = toPropertyKey$3;
  412. var $TypeError$1 = TypeError;
  413. // eslint-disable-next-line es/no-object-defineproperty -- safe
  414. var $defineProperty = Object.defineProperty;
  415. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  416. var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
  417. var ENUMERABLE = 'enumerable';
  418. var CONFIGURABLE$1 = 'configurable';
  419. var WRITABLE = 'writable';
  420. // `Object.defineProperty` method
  421. // https://tc39.es/ecma262/#sec-object.defineproperty
  422. objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
  423. anObject$1(O);
  424. P = toPropertyKey$1(P);
  425. anObject$1(Attributes);
  426. if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
  427. var current = $getOwnPropertyDescriptor(O, P);
  428. if (current && current[WRITABLE]) {
  429. O[P] = Attributes.value;
  430. Attributes = {
  431. configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
  432. enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
  433. writable: false
  434. };
  435. }
  436. } return $defineProperty(O, P, Attributes);
  437. } : $defineProperty : function defineProperty(O, P, Attributes) {
  438. anObject$1(O);
  439. P = toPropertyKey$1(P);
  440. anObject$1(Attributes);
  441. if (IE8_DOM_DEFINE) try {
  442. return $defineProperty(O, P, Attributes);
  443. } catch (error) { /* empty */ }
  444. if ('get' in Attributes || 'set' in Attributes) throw $TypeError$1('Accessors not supported');
  445. if ('value' in Attributes) O[P] = Attributes.value;
  446. return O;
  447. };
  448. var DESCRIPTORS$2 = descriptors;
  449. var definePropertyModule$3 = objectDefineProperty;
  450. var createPropertyDescriptor$1 = createPropertyDescriptor$3;
  451. var createNonEnumerableProperty$2 = DESCRIPTORS$2 ? function (object, key, value) {
  452. return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
  453. } : function (object, key, value) {
  454. object[key] = value;
  455. return object;
  456. };
  457. var makeBuiltIn$2 = {exports: {}};
  458. var DESCRIPTORS$1 = descriptors;
  459. var hasOwn$4 = hasOwnProperty_1;
  460. var FunctionPrototype = Function.prototype;
  461. // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
  462. var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
  463. var EXISTS = hasOwn$4(FunctionPrototype, 'name');
  464. // additional protection from minified / mangled / dropped function names
  465. var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
  466. var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
  467. var functionName = {
  468. EXISTS: EXISTS,
  469. PROPER: PROPER,
  470. CONFIGURABLE: CONFIGURABLE
  471. };
  472. var uncurryThis$3 = functionUncurryThis;
  473. var isCallable$6 = isCallable$c;
  474. var store$1 = sharedStore;
  475. var functionToString = uncurryThis$3(Function.toString);
  476. // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
  477. if (!isCallable$6(store$1.inspectSource)) {
  478. store$1.inspectSource = function (it) {
  479. return functionToString(it);
  480. };
  481. }
  482. var inspectSource$2 = store$1.inspectSource;
  483. var global$3 = global$a;
  484. var isCallable$5 = isCallable$c;
  485. var WeakMap$1 = global$3.WeakMap;
  486. var weakMapBasicDetection = isCallable$5(WeakMap$1) && /native code/.test(String(WeakMap$1));
  487. var shared$1 = shared$3.exports;
  488. var uid = uid$2;
  489. var keys = shared$1('keys');
  490. var sharedKey$1 = function (key) {
  491. return keys[key] || (keys[key] = uid(key));
  492. };
  493. var hiddenKeys$3 = {};
  494. var NATIVE_WEAK_MAP = weakMapBasicDetection;
  495. var global$2 = global$a;
  496. var isObject$2 = isObject$7;
  497. var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
  498. var hasOwn$3 = hasOwnProperty_1;
  499. var shared = sharedStore;
  500. var sharedKey = sharedKey$1;
  501. var hiddenKeys$2 = hiddenKeys$3;
  502. var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
  503. var TypeError$1 = global$2.TypeError;
  504. var WeakMap = global$2.WeakMap;
  505. var set, get, has;
  506. var enforce = function (it) {
  507. return has(it) ? get(it) : set(it, {});
  508. };
  509. var getterFor = function (TYPE) {
  510. return function (it) {
  511. var state;
  512. if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
  513. throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
  514. } return state;
  515. };
  516. };
  517. if (NATIVE_WEAK_MAP || shared.state) {
  518. var store = shared.state || (shared.state = new WeakMap());
  519. /* eslint-disable no-self-assign -- prototype methods protection */
  520. store.get = store.get;
  521. store.has = store.has;
  522. store.set = store.set;
  523. /* eslint-enable no-self-assign -- prototype methods protection */
  524. set = function (it, metadata) {
  525. if (store.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
  526. metadata.facade = it;
  527. store.set(it, metadata);
  528. return metadata;
  529. };
  530. get = function (it) {
  531. return store.get(it) || {};
  532. };
  533. has = function (it) {
  534. return store.has(it);
  535. };
  536. } else {
  537. var STATE = sharedKey('state');
  538. hiddenKeys$2[STATE] = true;
  539. set = function (it, metadata) {
  540. if (hasOwn$3(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
  541. metadata.facade = it;
  542. createNonEnumerableProperty$1(it, STATE, metadata);
  543. return metadata;
  544. };
  545. get = function (it) {
  546. return hasOwn$3(it, STATE) ? it[STATE] : {};
  547. };
  548. has = function (it) {
  549. return hasOwn$3(it, STATE);
  550. };
  551. }
  552. var internalState = {
  553. set: set,
  554. get: get,
  555. has: has,
  556. enforce: enforce,
  557. getterFor: getterFor
  558. };
  559. var fails$4 = fails$b;
  560. var isCallable$4 = isCallable$c;
  561. var hasOwn$2 = hasOwnProperty_1;
  562. var DESCRIPTORS = descriptors;
  563. var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
  564. var inspectSource$1 = inspectSource$2;
  565. var InternalStateModule = internalState;
  566. var enforceInternalState = InternalStateModule.enforce;
  567. var getInternalState = InternalStateModule.get;
  568. // eslint-disable-next-line es/no-object-defineproperty -- safe
  569. var defineProperty = Object.defineProperty;
  570. var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails$4(function () {
  571. return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
  572. });
  573. var TEMPLATE = String(String).split('String');
  574. var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
  575. if (String(name).slice(0, 7) === 'Symbol(') {
  576. name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
  577. }
  578. if (options && options.getter) name = 'get ' + name;
  579. if (options && options.setter) name = 'set ' + name;
  580. if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
  581. if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
  582. else value.name = name;
  583. }
  584. if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
  585. defineProperty(value, 'length', { value: options.arity });
  586. }
  587. try {
  588. if (options && hasOwn$2(options, 'constructor') && options.constructor) {
  589. if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
  590. // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
  591. } else if (value.prototype) value.prototype = undefined;
  592. } catch (error) { /* empty */ }
  593. var state = enforceInternalState(value);
  594. if (!hasOwn$2(state, 'source')) {
  595. state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
  596. } return value;
  597. };
  598. // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
  599. // eslint-disable-next-line no-extend-native -- required
  600. Function.prototype.toString = makeBuiltIn$1(function toString() {
  601. return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
  602. }, 'toString');
  603. var isCallable$3 = isCallable$c;
  604. var definePropertyModule$2 = objectDefineProperty;
  605. var makeBuiltIn = makeBuiltIn$2.exports;
  606. var defineGlobalProperty$1 = defineGlobalProperty$3;
  607. var defineBuiltIn$1 = function (O, key, value, options) {
  608. if (!options) options = {};
  609. var simple = options.enumerable;
  610. var name = options.name !== undefined ? options.name : key;
  611. if (isCallable$3(value)) makeBuiltIn(value, name, options);
  612. if (options.global) {
  613. if (simple) O[key] = value;
  614. else defineGlobalProperty$1(key, value);
  615. } else {
  616. try {
  617. if (!options.unsafe) delete O[key];
  618. else if (O[key]) simple = true;
  619. } catch (error) { /* empty */ }
  620. if (simple) O[key] = value;
  621. else definePropertyModule$2.f(O, key, {
  622. value: value,
  623. enumerable: false,
  624. configurable: !options.nonConfigurable,
  625. writable: !options.nonWritable
  626. });
  627. } return O;
  628. };
  629. var objectGetOwnPropertyNames = {};
  630. var ceil = Math.ceil;
  631. var floor = Math.floor;
  632. // `Math.trunc` method
  633. // https://tc39.es/ecma262/#sec-math.trunc
  634. // eslint-disable-next-line es/no-math-trunc -- safe
  635. var mathTrunc = Math.trunc || function trunc(x) {
  636. var n = +x;
  637. return (n > 0 ? floor : ceil)(n);
  638. };
  639. var trunc = mathTrunc;
  640. // `ToIntegerOrInfinity` abstract operation
  641. // https://tc39.es/ecma262/#sec-tointegerorinfinity
  642. var toIntegerOrInfinity$2 = function (argument) {
  643. var number = +argument;
  644. // eslint-disable-next-line no-self-compare -- NaN check
  645. return number !== number || number === 0 ? 0 : trunc(number);
  646. };
  647. var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
  648. var max = Math.max;
  649. var min$1 = Math.min;
  650. // Helper for a popular repeating case of the spec:
  651. // Let integer be ? ToInteger(index).
  652. // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
  653. var toAbsoluteIndex$1 = function (index, length) {
  654. var integer = toIntegerOrInfinity$1(index);
  655. return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
  656. };
  657. var toIntegerOrInfinity = toIntegerOrInfinity$2;
  658. var min = Math.min;
  659. // `ToLength` abstract operation
  660. // https://tc39.es/ecma262/#sec-tolength
  661. var toLength$1 = function (argument) {
  662. return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
  663. };
  664. var toLength = toLength$1;
  665. // `LengthOfArrayLike` abstract operation
  666. // https://tc39.es/ecma262/#sec-lengthofarraylike
  667. var lengthOfArrayLike$2 = function (obj) {
  668. return toLength(obj.length);
  669. };
  670. var toIndexedObject$1 = toIndexedObject$3;
  671. var toAbsoluteIndex = toAbsoluteIndex$1;
  672. var lengthOfArrayLike$1 = lengthOfArrayLike$2;
  673. // `Array.prototype.{ indexOf, includes }` methods implementation
  674. var createMethod = function (IS_INCLUDES) {
  675. return function ($this, el, fromIndex) {
  676. var O = toIndexedObject$1($this);
  677. var length = lengthOfArrayLike$1(O);
  678. var index = toAbsoluteIndex(fromIndex, length);
  679. var value;
  680. // Array#includes uses SameValueZero equality algorithm
  681. // eslint-disable-next-line no-self-compare -- NaN check
  682. if (IS_INCLUDES && el != el) while (length > index) {
  683. value = O[index++];
  684. // eslint-disable-next-line no-self-compare -- NaN check
  685. if (value != value) return true;
  686. // Array#indexOf ignores holes, Array#includes - not
  687. } else for (;length > index; index++) {
  688. if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
  689. } return !IS_INCLUDES && -1;
  690. };
  691. };
  692. var arrayIncludes = {
  693. // `Array.prototype.includes` method
  694. // https://tc39.es/ecma262/#sec-array.prototype.includes
  695. includes: createMethod(true),
  696. // `Array.prototype.indexOf` method
  697. // https://tc39.es/ecma262/#sec-array.prototype.indexof
  698. indexOf: createMethod(false)
  699. };
  700. var uncurryThis$2 = functionUncurryThis;
  701. var hasOwn$1 = hasOwnProperty_1;
  702. var toIndexedObject = toIndexedObject$3;
  703. var indexOf = arrayIncludes.indexOf;
  704. var hiddenKeys$1 = hiddenKeys$3;
  705. var push = uncurryThis$2([].push);
  706. var objectKeysInternal = function (object, names) {
  707. var O = toIndexedObject(object);
  708. var i = 0;
  709. var result = [];
  710. var key;
  711. for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push(result, key);
  712. // Don't enum bug & hidden keys
  713. while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
  714. ~indexOf(result, key) || push(result, key);
  715. }
  716. return result;
  717. };
  718. // IE8- don't enum bug keys
  719. var enumBugKeys$1 = [
  720. 'constructor',
  721. 'hasOwnProperty',
  722. 'isPrototypeOf',
  723. 'propertyIsEnumerable',
  724. 'toLocaleString',
  725. 'toString',
  726. 'valueOf'
  727. ];
  728. var internalObjectKeys = objectKeysInternal;
  729. var enumBugKeys = enumBugKeys$1;
  730. var hiddenKeys = enumBugKeys.concat('length', 'prototype');
  731. // `Object.getOwnPropertyNames` method
  732. // https://tc39.es/ecma262/#sec-object.getownpropertynames
  733. // eslint-disable-next-line es/no-object-getownpropertynames -- safe
  734. objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  735. return internalObjectKeys(O, hiddenKeys);
  736. };
  737. var objectGetOwnPropertySymbols = {};
  738. // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
  739. objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
  740. var getBuiltIn$1 = getBuiltIn$4;
  741. var uncurryThis$1 = functionUncurryThis;
  742. var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
  743. var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
  744. var anObject = anObject$2;
  745. var concat = uncurryThis$1([].concat);
  746. // all object keys, includes non-enumerable and symbols
  747. var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
  748. var keys = getOwnPropertyNamesModule.f(anObject(it));
  749. var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
  750. return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
  751. };
  752. var hasOwn = hasOwnProperty_1;
  753. var ownKeys = ownKeys$1;
  754. var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
  755. var definePropertyModule$1 = objectDefineProperty;
  756. var copyConstructorProperties$1 = function (target, source, exceptions) {
  757. var keys = ownKeys(source);
  758. var defineProperty = definePropertyModule$1.f;
  759. var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
  760. for (var i = 0; i < keys.length; i++) {
  761. var key = keys[i];
  762. if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
  763. defineProperty(target, key, getOwnPropertyDescriptor(source, key));
  764. }
  765. }
  766. };
  767. var fails$3 = fails$b;
  768. var isCallable$2 = isCallable$c;
  769. var replacement = /#|\.prototype\./;
  770. var isForced$1 = function (feature, detection) {
  771. var value = data[normalize(feature)];
  772. return value == POLYFILL ? true
  773. : value == NATIVE ? false
  774. : isCallable$2(detection) ? fails$3(detection)
  775. : !!detection;
  776. };
  777. var normalize = isForced$1.normalize = function (string) {
  778. return String(string).replace(replacement, '.').toLowerCase();
  779. };
  780. var data = isForced$1.data = {};
  781. var NATIVE = isForced$1.NATIVE = 'N';
  782. var POLYFILL = isForced$1.POLYFILL = 'P';
  783. var isForced_1 = isForced$1;
  784. var global$1 = global$a;
  785. var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
  786. var createNonEnumerableProperty = createNonEnumerableProperty$2;
  787. var defineBuiltIn = defineBuiltIn$1;
  788. var defineGlobalProperty = defineGlobalProperty$3;
  789. var copyConstructorProperties = copyConstructorProperties$1;
  790. var isForced = isForced_1;
  791. /*
  792. options.target - name of the target object
  793. options.global - target is the global object
  794. options.stat - export as static methods of target
  795. options.proto - export as prototype methods of target
  796. options.real - real prototype method for the `pure` version
  797. options.forced - export even if the native feature is available
  798. options.bind - bind methods to the target, required for the `pure` version
  799. options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
  800. options.unsafe - use the simple assignment of property instead of delete + defineProperty
  801. options.sham - add a flag to not completely full polyfills
  802. options.enumerable - export as enumerable property
  803. options.dontCallGetSet - prevent calling a getter on target
  804. options.name - the .name of the function if it does not match the key
  805. */
  806. var _export = function (options, source) {
  807. var TARGET = options.target;
  808. var GLOBAL = options.global;
  809. var STATIC = options.stat;
  810. var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  811. if (GLOBAL) {
  812. target = global$1;
  813. } else if (STATIC) {
  814. target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
  815. } else {
  816. target = (global$1[TARGET] || {}).prototype;
  817. }
  818. if (target) for (key in source) {
  819. sourceProperty = source[key];
  820. if (options.dontCallGetSet) {
  821. descriptor = getOwnPropertyDescriptor(target, key);
  822. targetProperty = descriptor && descriptor.value;
  823. } else targetProperty = target[key];
  824. FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
  825. // contained in target
  826. if (!FORCED && targetProperty !== undefined) {
  827. if (typeof sourceProperty == typeof targetProperty) continue;
  828. copyConstructorProperties(sourceProperty, targetProperty);
  829. }
  830. // add a flag to not completely full polyfills
  831. if (options.sham || (targetProperty && targetProperty.sham)) {
  832. createNonEnumerableProperty(sourceProperty, 'sham', true);
  833. }
  834. defineBuiltIn(target, key, sourceProperty, options);
  835. }
  836. };
  837. var classof$2 = classofRaw$2;
  838. // `IsArray` abstract operation
  839. // https://tc39.es/ecma262/#sec-isarray
  840. // eslint-disable-next-line es/no-array-isarray -- safe
  841. var isArray$2 = Array.isArray || function isArray(argument) {
  842. return classof$2(argument) == 'Array';
  843. };
  844. var $TypeError = TypeError;
  845. var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
  846. var doesNotExceedSafeInteger$1 = function (it) {
  847. if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
  848. return it;
  849. };
  850. var toPropertyKey = toPropertyKey$3;
  851. var definePropertyModule = objectDefineProperty;
  852. var createPropertyDescriptor = createPropertyDescriptor$3;
  853. var createProperty$1 = function (object, key, value) {
  854. var propertyKey = toPropertyKey(key);
  855. if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
  856. else object[propertyKey] = value;
  857. };
  858. var wellKnownSymbol$4 = wellKnownSymbol$6;
  859. var TO_STRING_TAG$1 = wellKnownSymbol$4('toStringTag');
  860. var test = {};
  861. test[TO_STRING_TAG$1] = 'z';
  862. var toStringTagSupport = String(test) === '[object z]';
  863. var TO_STRING_TAG_SUPPORT = toStringTagSupport;
  864. var isCallable$1 = isCallable$c;
  865. var classofRaw = classofRaw$2;
  866. var wellKnownSymbol$3 = wellKnownSymbol$6;
  867. var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
  868. var $Object = Object;
  869. // ES3 wrong here
  870. var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
  871. // fallback for IE11 Script Access Denied error
  872. var tryGet = function (it, key) {
  873. try {
  874. return it[key];
  875. } catch (error) { /* empty */ }
  876. };
  877. // getting tag from ES6+ `Object.prototype.toString`
  878. var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
  879. var O, tag, result;
  880. return it === undefined ? 'Undefined' : it === null ? 'Null'
  881. // @@toStringTag case
  882. : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
  883. // builtinTag case
  884. : CORRECT_ARGUMENTS ? classofRaw(O)
  885. // ES3 arguments fallback
  886. : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
  887. };
  888. var uncurryThis = functionUncurryThis;
  889. var fails$2 = fails$b;
  890. var isCallable = isCallable$c;
  891. var classof = classof$1;
  892. var getBuiltIn = getBuiltIn$4;
  893. var inspectSource = inspectSource$2;
  894. var noop = function () { /* empty */ };
  895. var empty = [];
  896. var construct = getBuiltIn('Reflect', 'construct');
  897. var constructorRegExp = /^\s*(?:class|function)\b/;
  898. var exec = uncurryThis(constructorRegExp.exec);
  899. var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
  900. var isConstructorModern = function isConstructor(argument) {
  901. if (!isCallable(argument)) return false;
  902. try {
  903. construct(noop, empty, argument);
  904. return true;
  905. } catch (error) {
  906. return false;
  907. }
  908. };
  909. var isConstructorLegacy = function isConstructor(argument) {
  910. if (!isCallable(argument)) return false;
  911. switch (classof(argument)) {
  912. case 'AsyncFunction':
  913. case 'GeneratorFunction':
  914. case 'AsyncGeneratorFunction': return false;
  915. }
  916. try {
  917. // we can't check .prototype since constructors produced by .bind haven't it
  918. // `Function#toString` throws on some built-it function in some legacy engines
  919. // (for example, `DOMQuad` and similar in FF41-)
  920. return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
  921. } catch (error) {
  922. return true;
  923. }
  924. };
  925. isConstructorLegacy.sham = true;
  926. // `IsConstructor` abstract operation
  927. // https://tc39.es/ecma262/#sec-isconstructor
  928. var isConstructor$1 = !construct || fails$2(function () {
  929. var called;
  930. return isConstructorModern(isConstructorModern.call)
  931. || !isConstructorModern(Object)
  932. || !isConstructorModern(function () { called = true; })
  933. || called;
  934. }) ? isConstructorLegacy : isConstructorModern;
  935. var isArray$1 = isArray$2;
  936. var isConstructor = isConstructor$1;
  937. var isObject$1 = isObject$7;
  938. var wellKnownSymbol$2 = wellKnownSymbol$6;
  939. var SPECIES$1 = wellKnownSymbol$2('species');
  940. var $Array = Array;
  941. // a part of `ArraySpeciesCreate` abstract operation
  942. // https://tc39.es/ecma262/#sec-arrayspeciescreate
  943. var arraySpeciesConstructor$1 = function (originalArray) {
  944. var C;
  945. if (isArray$1(originalArray)) {
  946. C = originalArray.constructor;
  947. // cross-realm fallback
  948. if (isConstructor(C) && (C === $Array || isArray$1(C.prototype))) C = undefined;
  949. else if (isObject$1(C)) {
  950. C = C[SPECIES$1];
  951. if (C === null) C = undefined;
  952. }
  953. } return C === undefined ? $Array : C;
  954. };
  955. var arraySpeciesConstructor = arraySpeciesConstructor$1;
  956. // `ArraySpeciesCreate` abstract operation
  957. // https://tc39.es/ecma262/#sec-arrayspeciescreate
  958. var arraySpeciesCreate$1 = function (originalArray, length) {
  959. return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
  960. };
  961. var fails$1 = fails$b;
  962. var wellKnownSymbol$1 = wellKnownSymbol$6;
  963. var V8_VERSION$1 = engineV8Version;
  964. var SPECIES = wellKnownSymbol$1('species');
  965. var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
  966. // We can't use this feature detection in V8 since it causes
  967. // deoptimization and serious performance degradation
  968. // https://github.com/zloirock/core-js/issues/677
  969. return V8_VERSION$1 >= 51 || !fails$1(function () {
  970. var array = [];
  971. var constructor = array.constructor = {};
  972. constructor[SPECIES] = function () {
  973. return { foo: 1 };
  974. };
  975. return array[METHOD_NAME](Boolean).foo !== 1;
  976. });
  977. };
  978. var $ = _export;
  979. var fails = fails$b;
  980. var isArray = isArray$2;
  981. var isObject = isObject$7;
  982. var toObject = toObject$2;
  983. var lengthOfArrayLike = lengthOfArrayLike$2;
  984. var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
  985. var createProperty = createProperty$1;
  986. var arraySpeciesCreate = arraySpeciesCreate$1;
  987. var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
  988. var wellKnownSymbol = wellKnownSymbol$6;
  989. var V8_VERSION = engineV8Version;
  990. var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
  991. // We can't use this feature detection in V8 since it causes
  992. // deoptimization and serious performance degradation
  993. // https://github.com/zloirock/core-js/issues/679
  994. var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {
  995. var array = [];
  996. array[IS_CONCAT_SPREADABLE] = false;
  997. return array.concat()[0] !== array;
  998. });
  999. var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
  1000. var isConcatSpreadable = function (O) {
  1001. if (!isObject(O)) return false;
  1002. var spreadable = O[IS_CONCAT_SPREADABLE];
  1003. return spreadable !== undefined ? !!spreadable : isArray(O);
  1004. };
  1005. var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
  1006. // `Array.prototype.concat` method
  1007. // https://tc39.es/ecma262/#sec-array.prototype.concat
  1008. // with adding support of @@isConcatSpreadable and @@species
  1009. $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
  1010. // eslint-disable-next-line no-unused-vars -- required for `.length`
  1011. concat: function concat(arg) {
  1012. var O = toObject(this);
  1013. var A = arraySpeciesCreate(O, 0);
  1014. var n = 0;
  1015. var i, k, length, len, E;
  1016. for (i = -1, length = arguments.length; i < length; i++) {
  1017. E = i === -1 ? O : arguments[i];
  1018. if (isConcatSpreadable(E)) {
  1019. len = lengthOfArrayLike(E);
  1020. doesNotExceedSafeInteger(n + len);
  1021. for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
  1022. } else {
  1023. doesNotExceedSafeInteger(n + 1);
  1024. createProperty(A, n++, E);
  1025. }
  1026. }
  1027. A.length = n;
  1028. return A;
  1029. }
  1030. });
  1031. /**
  1032. * Bootstrap Table Russian translation
  1033. * Author: Dunaevsky Maxim <dunmaksim@yandex.ru>
  1034. */
  1035. $__default["default"].fn.bootstrapTable.locales['ru-RU'] = $__default["default"].fn.bootstrapTable.locales['ru'] = {
  1036. formatCopyRows: function formatCopyRows() {
  1037. return 'Скопировать строки';
  1038. },
  1039. formatPrint: function formatPrint() {
  1040. return 'Печать';
  1041. },
  1042. formatLoadingMessage: function formatLoadingMessage() {
  1043. return 'Пожалуйста, подождите, идёт загрузка';
  1044. },
  1045. formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
  1046. return "".concat(pageNumber, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443");
  1047. },
  1048. formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows, totalNotFiltered) {
  1049. if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
  1050. return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows, " (\u043E\u0442\u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432\u0430\u043D\u043E, \u0432\u0441\u0435\u0433\u043E \u043D\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 ").concat(totalNotFiltered, " \u0437\u0430\u043F\u0438\u0441\u0435\u0439)");
  1051. }
  1052. return "\u0417\u0430\u043F\u0438\u0441\u0438 \u0441 ".concat(pageFrom, " \u043F\u043E ").concat(pageTo, " \u0438\u0437 ").concat(totalRows);
  1053. },
  1054. formatSRPaginationPreText: function formatSRPaginationPreText() {
  1055. return 'предыдущая страница';
  1056. },
  1057. formatSRPaginationPageText: function formatSRPaginationPageText(page) {
  1058. return "\u043F\u0435\u0440\u0435\u0439\u0442\u0438 \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435 ".concat(page);
  1059. },
  1060. formatSRPaginationNextText: function formatSRPaginationNextText() {
  1061. return 'следующая страница';
  1062. },
  1063. formatDetailPagination: function formatDetailPagination(totalRows) {
  1064. return "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043D\u043E ".concat(totalRows, " \u0441\u0442\u0440\u043E\u043A");
  1065. },
  1066. formatClearSearch: function formatClearSearch() {
  1067. return 'Очистить фильтры';
  1068. },
  1069. formatSearch: function formatSearch() {
  1070. return 'Поиск';
  1071. },
  1072. formatNoMatches: function formatNoMatches() {
  1073. return 'Ничего не найдено';
  1074. },
  1075. formatPaginationSwitch: function formatPaginationSwitch() {
  1076. return 'Скрыть/Показать постраничную навигацию';
  1077. },
  1078. formatPaginationSwitchDown: function formatPaginationSwitchDown() {
  1079. return 'Показать постраничную навигацию';
  1080. },
  1081. formatPaginationSwitchUp: function formatPaginationSwitchUp() {
  1082. return 'Скрыть постраничную навигацию';
  1083. },
  1084. formatRefresh: function formatRefresh() {
  1085. return 'Обновить';
  1086. },
  1087. formatToggleOn: function formatToggleOn() {
  1088. return 'Показать записи в виде карточек';
  1089. },
  1090. formatToggleOff: function formatToggleOff() {
  1091. return 'Табличный режим просмотра';
  1092. },
  1093. formatColumns: function formatColumns() {
  1094. return 'Колонки';
  1095. },
  1096. formatColumnsToggleAll: function formatColumnsToggleAll() {
  1097. return 'Выбрать все';
  1098. },
  1099. formatFullscreen: function formatFullscreen() {
  1100. return 'Полноэкранный режим';
  1101. },
  1102. formatAllRows: function formatAllRows() {
  1103. return 'Все';
  1104. },
  1105. formatAutoRefresh: function formatAutoRefresh() {
  1106. return 'Автоматическое обновление';
  1107. },
  1108. formatExport: function formatExport() {
  1109. return 'Экспортировать данные';
  1110. },
  1111. formatJumpTo: function formatJumpTo() {
  1112. return 'Стр.';
  1113. },
  1114. formatAdvancedSearch: function formatAdvancedSearch() {
  1115. return 'Расширенный поиск';
  1116. },
  1117. formatAdvancedCloseButton: function formatAdvancedCloseButton() {
  1118. return 'Закрыть';
  1119. },
  1120. formatFilterControlSwitch: function formatFilterControlSwitch() {
  1121. return 'Скрыть/Показать панель инструментов';
  1122. },
  1123. formatFilterControlSwitchHide: function formatFilterControlSwitchHide() {
  1124. return 'Скрыть панель инструментов';
  1125. },
  1126. formatFilterControlSwitchShow: function formatFilterControlSwitchShow() {
  1127. return 'Показать панель инструментов';
  1128. }
  1129. };
  1130. $__default["default"].extend($__default["default"].fn.bootstrapTable.defaults, $__default["default"].fn.bootstrapTable.locales['ru-RU']);
  1131. }));