@xiaonoodles/meetfun-i18n 1.2.17 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,26 +3,2598 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var VueI18nModule = require('vue-i18n');
6
- var lodash = require('lodash');
7
6
 
8
7
  function _interopNamespaceDefault(e) {
9
- var n = Object.create(null);
10
- if (e) {
11
- Object.keys(e).forEach(function (k) {
12
- if (k !== 'default') {
13
- var d = Object.getOwnPropertyDescriptor(e, k);
14
- Object.defineProperty(n, k, d.get ? d : {
15
- enumerable: true,
16
- get: function () { return e[k]; }
17
- });
18
- }
19
- });
8
+ var n = Object.create(null);
9
+ if (e) {
10
+ Object.keys(e).forEach(function (k) {
11
+ if (k !== 'default') {
12
+ var d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: function () { return e[k]; }
16
+ });
17
+ }
18
+ });
19
+ }
20
+ n.default = e;
21
+ return Object.freeze(n);
22
+ }
23
+
24
+ var VueI18nModule__namespace = /*#__PURE__*/_interopNamespaceDefault(VueI18nModule);
25
+
26
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
27
+
28
+ function getDefaultExportFromCjs (x) {
29
+ return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
30
+ }
31
+
32
+ /**
33
+ * Removes all key-value entries from the list cache.
34
+ *
35
+ * @private
36
+ * @name clear
37
+ * @memberOf ListCache
38
+ */
39
+
40
+ function listCacheClear$1() {
41
+ this.__data__ = [];
42
+ this.size = 0;
43
+ }
44
+
45
+ var _listCacheClear = listCacheClear$1;
46
+
47
+ /**
48
+ * Performs a
49
+ * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
50
+ * comparison between two values to determine if they are equivalent.
51
+ *
52
+ * @static
53
+ * @memberOf _
54
+ * @since 4.0.0
55
+ * @category Lang
56
+ * @param {*} value The value to compare.
57
+ * @param {*} other The other value to compare.
58
+ * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
59
+ * @example
60
+ *
61
+ * var object = { 'a': 1 };
62
+ * var other = { 'a': 1 };
63
+ *
64
+ * _.eq(object, object);
65
+ * // => true
66
+ *
67
+ * _.eq(object, other);
68
+ * // => false
69
+ *
70
+ * _.eq('a', 'a');
71
+ * // => true
72
+ *
73
+ * _.eq('a', Object('a'));
74
+ * // => false
75
+ *
76
+ * _.eq(NaN, NaN);
77
+ * // => true
78
+ */
79
+
80
+ function eq$4(value, other) {
81
+ return value === other || (value !== value && other !== other);
82
+ }
83
+
84
+ var eq_1 = eq$4;
85
+
86
+ var eq$3 = eq_1;
87
+
88
+ /**
89
+ * Gets the index at which the `key` is found in `array` of key-value pairs.
90
+ *
91
+ * @private
92
+ * @param {Array} array The array to inspect.
93
+ * @param {*} key The key to search for.
94
+ * @returns {number} Returns the index of the matched value, else `-1`.
95
+ */
96
+ function assocIndexOf$4(array, key) {
97
+ var length = array.length;
98
+ while (length--) {
99
+ if (eq$3(array[length][0], key)) {
100
+ return length;
101
+ }
102
+ }
103
+ return -1;
104
+ }
105
+
106
+ var _assocIndexOf = assocIndexOf$4;
107
+
108
+ var assocIndexOf$3 = _assocIndexOf;
109
+
110
+ /** Used for built-in method references. */
111
+ var arrayProto = Array.prototype;
112
+
113
+ /** Built-in value references. */
114
+ var splice = arrayProto.splice;
115
+
116
+ /**
117
+ * Removes `key` and its value from the list cache.
118
+ *
119
+ * @private
120
+ * @name delete
121
+ * @memberOf ListCache
122
+ * @param {string} key The key of the value to remove.
123
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
124
+ */
125
+ function listCacheDelete$1(key) {
126
+ var data = this.__data__,
127
+ index = assocIndexOf$3(data, key);
128
+
129
+ if (index < 0) {
130
+ return false;
131
+ }
132
+ var lastIndex = data.length - 1;
133
+ if (index == lastIndex) {
134
+ data.pop();
135
+ } else {
136
+ splice.call(data, index, 1);
137
+ }
138
+ --this.size;
139
+ return true;
140
+ }
141
+
142
+ var _listCacheDelete = listCacheDelete$1;
143
+
144
+ var assocIndexOf$2 = _assocIndexOf;
145
+
146
+ /**
147
+ * Gets the list cache value for `key`.
148
+ *
149
+ * @private
150
+ * @name get
151
+ * @memberOf ListCache
152
+ * @param {string} key The key of the value to get.
153
+ * @returns {*} Returns the entry value.
154
+ */
155
+ function listCacheGet$1(key) {
156
+ var data = this.__data__,
157
+ index = assocIndexOf$2(data, key);
158
+
159
+ return index < 0 ? undefined : data[index][1];
160
+ }
161
+
162
+ var _listCacheGet = listCacheGet$1;
163
+
164
+ var assocIndexOf$1 = _assocIndexOf;
165
+
166
+ /**
167
+ * Checks if a list cache value for `key` exists.
168
+ *
169
+ * @private
170
+ * @name has
171
+ * @memberOf ListCache
172
+ * @param {string} key The key of the entry to check.
173
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
174
+ */
175
+ function listCacheHas$1(key) {
176
+ return assocIndexOf$1(this.__data__, key) > -1;
177
+ }
178
+
179
+ var _listCacheHas = listCacheHas$1;
180
+
181
+ var assocIndexOf = _assocIndexOf;
182
+
183
+ /**
184
+ * Sets the list cache `key` to `value`.
185
+ *
186
+ * @private
187
+ * @name set
188
+ * @memberOf ListCache
189
+ * @param {string} key The key of the value to set.
190
+ * @param {*} value The value to set.
191
+ * @returns {Object} Returns the list cache instance.
192
+ */
193
+ function listCacheSet$1(key, value) {
194
+ var data = this.__data__,
195
+ index = assocIndexOf(data, key);
196
+
197
+ if (index < 0) {
198
+ ++this.size;
199
+ data.push([key, value]);
200
+ } else {
201
+ data[index][1] = value;
202
+ }
203
+ return this;
204
+ }
205
+
206
+ var _listCacheSet = listCacheSet$1;
207
+
208
+ var listCacheClear = _listCacheClear,
209
+ listCacheDelete = _listCacheDelete,
210
+ listCacheGet = _listCacheGet,
211
+ listCacheHas = _listCacheHas,
212
+ listCacheSet = _listCacheSet;
213
+
214
+ /**
215
+ * Creates an list cache object.
216
+ *
217
+ * @private
218
+ * @constructor
219
+ * @param {Array} [entries] The key-value pairs to cache.
220
+ */
221
+ function ListCache$4(entries) {
222
+ var index = -1,
223
+ length = entries == null ? 0 : entries.length;
224
+
225
+ this.clear();
226
+ while (++index < length) {
227
+ var entry = entries[index];
228
+ this.set(entry[0], entry[1]);
229
+ }
230
+ }
231
+
232
+ // Add methods to `ListCache`.
233
+ ListCache$4.prototype.clear = listCacheClear;
234
+ ListCache$4.prototype['delete'] = listCacheDelete;
235
+ ListCache$4.prototype.get = listCacheGet;
236
+ ListCache$4.prototype.has = listCacheHas;
237
+ ListCache$4.prototype.set = listCacheSet;
238
+
239
+ var _ListCache = ListCache$4;
240
+
241
+ var ListCache$3 = _ListCache;
242
+
243
+ /**
244
+ * Removes all key-value entries from the stack.
245
+ *
246
+ * @private
247
+ * @name clear
248
+ * @memberOf Stack
249
+ */
250
+ function stackClear$1() {
251
+ this.__data__ = new ListCache$3;
252
+ this.size = 0;
253
+ }
254
+
255
+ var _stackClear = stackClear$1;
256
+
257
+ /**
258
+ * Removes `key` and its value from the stack.
259
+ *
260
+ * @private
261
+ * @name delete
262
+ * @memberOf Stack
263
+ * @param {string} key The key of the value to remove.
264
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
265
+ */
266
+
267
+ function stackDelete$1(key) {
268
+ var data = this.__data__,
269
+ result = data['delete'](key);
270
+
271
+ this.size = data.size;
272
+ return result;
273
+ }
274
+
275
+ var _stackDelete = stackDelete$1;
276
+
277
+ /**
278
+ * Gets the stack value for `key`.
279
+ *
280
+ * @private
281
+ * @name get
282
+ * @memberOf Stack
283
+ * @param {string} key The key of the value to get.
284
+ * @returns {*} Returns the entry value.
285
+ */
286
+
287
+ function stackGet$1(key) {
288
+ return this.__data__.get(key);
289
+ }
290
+
291
+ var _stackGet = stackGet$1;
292
+
293
+ /**
294
+ * Checks if a stack value for `key` exists.
295
+ *
296
+ * @private
297
+ * @name has
298
+ * @memberOf Stack
299
+ * @param {string} key The key of the entry to check.
300
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
301
+ */
302
+
303
+ function stackHas$1(key) {
304
+ return this.__data__.has(key);
305
+ }
306
+
307
+ var _stackHas = stackHas$1;
308
+
309
+ /** Detect free variable `global` from Node.js. */
310
+
311
+ var freeGlobal$1 = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
312
+
313
+ var _freeGlobal = freeGlobal$1;
314
+
315
+ var freeGlobal = _freeGlobal;
316
+
317
+ /** Detect free variable `self`. */
318
+ var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
319
+
320
+ /** Used as a reference to the global object. */
321
+ var root$4 = freeGlobal || freeSelf || Function('return this')();
322
+
323
+ var _root = root$4;
324
+
325
+ var root$3 = _root;
326
+
327
+ /** Built-in value references. */
328
+ var Symbol$2 = root$3.Symbol;
329
+
330
+ var _Symbol = Symbol$2;
331
+
332
+ var Symbol$1 = _Symbol;
333
+
334
+ /** Used for built-in method references. */
335
+ var objectProto$a = Object.prototype;
336
+
337
+ /** Used to check objects for own properties. */
338
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
339
+
340
+ /**
341
+ * Used to resolve the
342
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
343
+ * of values.
344
+ */
345
+ var nativeObjectToString$1 = objectProto$a.toString;
346
+
347
+ /** Built-in value references. */
348
+ var symToStringTag$1 = Symbol$1 ? Symbol$1.toStringTag : undefined;
349
+
350
+ /**
351
+ * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
352
+ *
353
+ * @private
354
+ * @param {*} value The value to query.
355
+ * @returns {string} Returns the raw `toStringTag`.
356
+ */
357
+ function getRawTag$1(value) {
358
+ var isOwn = hasOwnProperty$8.call(value, symToStringTag$1),
359
+ tag = value[symToStringTag$1];
360
+
361
+ try {
362
+ value[symToStringTag$1] = undefined;
363
+ var unmasked = true;
364
+ } catch (e) {}
365
+
366
+ var result = nativeObjectToString$1.call(value);
367
+ if (unmasked) {
368
+ if (isOwn) {
369
+ value[symToStringTag$1] = tag;
370
+ } else {
371
+ delete value[symToStringTag$1];
372
+ }
373
+ }
374
+ return result;
375
+ }
376
+
377
+ var _getRawTag = getRawTag$1;
378
+
379
+ /** Used for built-in method references. */
380
+
381
+ var objectProto$9 = Object.prototype;
382
+
383
+ /**
384
+ * Used to resolve the
385
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
386
+ * of values.
387
+ */
388
+ var nativeObjectToString = objectProto$9.toString;
389
+
390
+ /**
391
+ * Converts `value` to a string using `Object.prototype.toString`.
392
+ *
393
+ * @private
394
+ * @param {*} value The value to convert.
395
+ * @returns {string} Returns the converted string.
396
+ */
397
+ function objectToString$1(value) {
398
+ return nativeObjectToString.call(value);
399
+ }
400
+
401
+ var _objectToString = objectToString$1;
402
+
403
+ var Symbol = _Symbol,
404
+ getRawTag = _getRawTag,
405
+ objectToString = _objectToString;
406
+
407
+ /** `Object#toString` result references. */
408
+ var nullTag = '[object Null]',
409
+ undefinedTag = '[object Undefined]';
410
+
411
+ /** Built-in value references. */
412
+ var symToStringTag = Symbol ? Symbol.toStringTag : undefined;
413
+
414
+ /**
415
+ * The base implementation of `getTag` without fallbacks for buggy environments.
416
+ *
417
+ * @private
418
+ * @param {*} value The value to query.
419
+ * @returns {string} Returns the `toStringTag`.
420
+ */
421
+ function baseGetTag$4(value) {
422
+ if (value == null) {
423
+ return value === undefined ? undefinedTag : nullTag;
424
+ }
425
+ return (symToStringTag && symToStringTag in Object(value))
426
+ ? getRawTag(value)
427
+ : objectToString(value);
428
+ }
429
+
430
+ var _baseGetTag = baseGetTag$4;
431
+
432
+ /**
433
+ * Checks if `value` is the
434
+ * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
435
+ * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
436
+ *
437
+ * @static
438
+ * @memberOf _
439
+ * @since 0.1.0
440
+ * @category Lang
441
+ * @param {*} value The value to check.
442
+ * @returns {boolean} Returns `true` if `value` is an object, else `false`.
443
+ * @example
444
+ *
445
+ * _.isObject({});
446
+ * // => true
447
+ *
448
+ * _.isObject([1, 2, 3]);
449
+ * // => true
450
+ *
451
+ * _.isObject(_.noop);
452
+ * // => true
453
+ *
454
+ * _.isObject(null);
455
+ * // => false
456
+ */
457
+
458
+ function isObject$7(value) {
459
+ var type = typeof value;
460
+ return value != null && (type == 'object' || type == 'function');
461
+ }
462
+
463
+ var isObject_1 = isObject$7;
464
+
465
+ var baseGetTag$3 = _baseGetTag,
466
+ isObject$6 = isObject_1;
467
+
468
+ /** `Object#toString` result references. */
469
+ var asyncTag = '[object AsyncFunction]',
470
+ funcTag$1 = '[object Function]',
471
+ genTag = '[object GeneratorFunction]',
472
+ proxyTag = '[object Proxy]';
473
+
474
+ /**
475
+ * Checks if `value` is classified as a `Function` object.
476
+ *
477
+ * @static
478
+ * @memberOf _
479
+ * @since 0.1.0
480
+ * @category Lang
481
+ * @param {*} value The value to check.
482
+ * @returns {boolean} Returns `true` if `value` is a function, else `false`.
483
+ * @example
484
+ *
485
+ * _.isFunction(_);
486
+ * // => true
487
+ *
488
+ * _.isFunction(/abc/);
489
+ * // => false
490
+ */
491
+ function isFunction$3(value) {
492
+ if (!isObject$6(value)) {
493
+ return false;
494
+ }
495
+ // The use of `Object#toString` avoids issues with the `typeof` operator
496
+ // in Safari 9 which returns 'object' for typed arrays and other constructors.
497
+ var tag = baseGetTag$3(value);
498
+ return tag == funcTag$1 || tag == genTag || tag == asyncTag || tag == proxyTag;
499
+ }
500
+
501
+ var isFunction_1 = isFunction$3;
502
+
503
+ var root$2 = _root;
504
+
505
+ /** Used to detect overreaching core-js shims. */
506
+ var coreJsData$1 = root$2['__core-js_shared__'];
507
+
508
+ var _coreJsData = coreJsData$1;
509
+
510
+ var coreJsData = _coreJsData;
511
+
512
+ /** Used to detect methods masquerading as native. */
513
+ var maskSrcKey = (function() {
514
+ var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');
515
+ return uid ? ('Symbol(src)_1.' + uid) : '';
516
+ }());
517
+
518
+ /**
519
+ * Checks if `func` has its source masked.
520
+ *
521
+ * @private
522
+ * @param {Function} func The function to check.
523
+ * @returns {boolean} Returns `true` if `func` is masked, else `false`.
524
+ */
525
+ function isMasked$1(func) {
526
+ return !!maskSrcKey && (maskSrcKey in func);
527
+ }
528
+
529
+ var _isMasked = isMasked$1;
530
+
531
+ /** Used for built-in method references. */
532
+
533
+ var funcProto$2 = Function.prototype;
534
+
535
+ /** Used to resolve the decompiled source of functions. */
536
+ var funcToString$2 = funcProto$2.toString;
537
+
538
+ /**
539
+ * Converts `func` to its source code.
540
+ *
541
+ * @private
542
+ * @param {Function} func The function to convert.
543
+ * @returns {string} Returns the source code.
544
+ */
545
+ function toSource$1(func) {
546
+ if (func != null) {
547
+ try {
548
+ return funcToString$2.call(func);
549
+ } catch (e) {}
550
+ try {
551
+ return (func + '');
552
+ } catch (e) {}
553
+ }
554
+ return '';
555
+ }
556
+
557
+ var _toSource = toSource$1;
558
+
559
+ var isFunction$2 = isFunction_1,
560
+ isMasked = _isMasked,
561
+ isObject$5 = isObject_1,
562
+ toSource = _toSource;
563
+
564
+ /**
565
+ * Used to match `RegExp`
566
+ * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
567
+ */
568
+ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
569
+
570
+ /** Used to detect host constructors (Safari). */
571
+ var reIsHostCtor = /^\[object .+?Constructor\]$/;
572
+
573
+ /** Used for built-in method references. */
574
+ var funcProto$1 = Function.prototype,
575
+ objectProto$8 = Object.prototype;
576
+
577
+ /** Used to resolve the decompiled source of functions. */
578
+ var funcToString$1 = funcProto$1.toString;
579
+
580
+ /** Used to check objects for own properties. */
581
+ var hasOwnProperty$7 = objectProto$8.hasOwnProperty;
582
+
583
+ /** Used to detect if a method is native. */
584
+ var reIsNative = RegExp('^' +
585
+ funcToString$1.call(hasOwnProperty$7).replace(reRegExpChar, '\\$&')
586
+ .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
587
+ );
588
+
589
+ /**
590
+ * The base implementation of `_.isNative` without bad shim checks.
591
+ *
592
+ * @private
593
+ * @param {*} value The value to check.
594
+ * @returns {boolean} Returns `true` if `value` is a native function,
595
+ * else `false`.
596
+ */
597
+ function baseIsNative$1(value) {
598
+ if (!isObject$5(value) || isMasked(value)) {
599
+ return false;
600
+ }
601
+ var pattern = isFunction$2(value) ? reIsNative : reIsHostCtor;
602
+ return pattern.test(toSource(value));
603
+ }
604
+
605
+ var _baseIsNative = baseIsNative$1;
606
+
607
+ /**
608
+ * Gets the value at `key` of `object`.
609
+ *
610
+ * @private
611
+ * @param {Object} [object] The object to query.
612
+ * @param {string} key The key of the property to get.
613
+ * @returns {*} Returns the property value.
614
+ */
615
+
616
+ function getValue$1(object, key) {
617
+ return object == null ? undefined : object[key];
618
+ }
619
+
620
+ var _getValue = getValue$1;
621
+
622
+ var baseIsNative = _baseIsNative,
623
+ getValue = _getValue;
624
+
625
+ /**
626
+ * Gets the native function at `key` of `object`.
627
+ *
628
+ * @private
629
+ * @param {Object} object The object to query.
630
+ * @param {string} key The key of the method to get.
631
+ * @returns {*} Returns the function if it's native, else `undefined`.
632
+ */
633
+ function getNative$3(object, key) {
634
+ var value = getValue(object, key);
635
+ return baseIsNative(value) ? value : undefined;
636
+ }
637
+
638
+ var _getNative = getNative$3;
639
+
640
+ var getNative$2 = _getNative,
641
+ root$1 = _root;
642
+
643
+ /* Built-in method references that are verified to be native. */
644
+ var Map$3 = getNative$2(root$1, 'Map');
645
+
646
+ var _Map = Map$3;
647
+
648
+ var getNative$1 = _getNative;
649
+
650
+ /* Built-in method references that are verified to be native. */
651
+ var nativeCreate$4 = getNative$1(Object, 'create');
652
+
653
+ var _nativeCreate = nativeCreate$4;
654
+
655
+ var nativeCreate$3 = _nativeCreate;
656
+
657
+ /**
658
+ * Removes all key-value entries from the hash.
659
+ *
660
+ * @private
661
+ * @name clear
662
+ * @memberOf Hash
663
+ */
664
+ function hashClear$1() {
665
+ this.__data__ = nativeCreate$3 ? nativeCreate$3(null) : {};
666
+ this.size = 0;
667
+ }
668
+
669
+ var _hashClear = hashClear$1;
670
+
671
+ /**
672
+ * Removes `key` and its value from the hash.
673
+ *
674
+ * @private
675
+ * @name delete
676
+ * @memberOf Hash
677
+ * @param {Object} hash The hash to modify.
678
+ * @param {string} key The key of the value to remove.
679
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
680
+ */
681
+
682
+ function hashDelete$1(key) {
683
+ var result = this.has(key) && delete this.__data__[key];
684
+ this.size -= result ? 1 : 0;
685
+ return result;
686
+ }
687
+
688
+ var _hashDelete = hashDelete$1;
689
+
690
+ var nativeCreate$2 = _nativeCreate;
691
+
692
+ /** Used to stand-in for `undefined` hash values. */
693
+ var HASH_UNDEFINED$1 = '__lodash_hash_undefined__';
694
+
695
+ /** Used for built-in method references. */
696
+ var objectProto$7 = Object.prototype;
697
+
698
+ /** Used to check objects for own properties. */
699
+ var hasOwnProperty$6 = objectProto$7.hasOwnProperty;
700
+
701
+ /**
702
+ * Gets the hash value for `key`.
703
+ *
704
+ * @private
705
+ * @name get
706
+ * @memberOf Hash
707
+ * @param {string} key The key of the value to get.
708
+ * @returns {*} Returns the entry value.
709
+ */
710
+ function hashGet$1(key) {
711
+ var data = this.__data__;
712
+ if (nativeCreate$2) {
713
+ var result = data[key];
714
+ return result === HASH_UNDEFINED$1 ? undefined : result;
715
+ }
716
+ return hasOwnProperty$6.call(data, key) ? data[key] : undefined;
717
+ }
718
+
719
+ var _hashGet = hashGet$1;
720
+
721
+ var nativeCreate$1 = _nativeCreate;
722
+
723
+ /** Used for built-in method references. */
724
+ var objectProto$6 = Object.prototype;
725
+
726
+ /** Used to check objects for own properties. */
727
+ var hasOwnProperty$5 = objectProto$6.hasOwnProperty;
728
+
729
+ /**
730
+ * Checks if a hash value for `key` exists.
731
+ *
732
+ * @private
733
+ * @name has
734
+ * @memberOf Hash
735
+ * @param {string} key The key of the entry to check.
736
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
737
+ */
738
+ function hashHas$1(key) {
739
+ var data = this.__data__;
740
+ return nativeCreate$1 ? (data[key] !== undefined) : hasOwnProperty$5.call(data, key);
741
+ }
742
+
743
+ var _hashHas = hashHas$1;
744
+
745
+ var nativeCreate = _nativeCreate;
746
+
747
+ /** Used to stand-in for `undefined` hash values. */
748
+ var HASH_UNDEFINED = '__lodash_hash_undefined__';
749
+
750
+ /**
751
+ * Sets the hash `key` to `value`.
752
+ *
753
+ * @private
754
+ * @name set
755
+ * @memberOf Hash
756
+ * @param {string} key The key of the value to set.
757
+ * @param {*} value The value to set.
758
+ * @returns {Object} Returns the hash instance.
759
+ */
760
+ function hashSet$1(key, value) {
761
+ var data = this.__data__;
762
+ this.size += this.has(key) ? 0 : 1;
763
+ data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;
764
+ return this;
765
+ }
766
+
767
+ var _hashSet = hashSet$1;
768
+
769
+ var hashClear = _hashClear,
770
+ hashDelete = _hashDelete,
771
+ hashGet = _hashGet,
772
+ hashHas = _hashHas,
773
+ hashSet = _hashSet;
774
+
775
+ /**
776
+ * Creates a hash object.
777
+ *
778
+ * @private
779
+ * @constructor
780
+ * @param {Array} [entries] The key-value pairs to cache.
781
+ */
782
+ function Hash$1(entries) {
783
+ var index = -1,
784
+ length = entries == null ? 0 : entries.length;
785
+
786
+ this.clear();
787
+ while (++index < length) {
788
+ var entry = entries[index];
789
+ this.set(entry[0], entry[1]);
790
+ }
791
+ }
792
+
793
+ // Add methods to `Hash`.
794
+ Hash$1.prototype.clear = hashClear;
795
+ Hash$1.prototype['delete'] = hashDelete;
796
+ Hash$1.prototype.get = hashGet;
797
+ Hash$1.prototype.has = hashHas;
798
+ Hash$1.prototype.set = hashSet;
799
+
800
+ var _Hash = Hash$1;
801
+
802
+ var Hash = _Hash,
803
+ ListCache$2 = _ListCache,
804
+ Map$2 = _Map;
805
+
806
+ /**
807
+ * Removes all key-value entries from the map.
808
+ *
809
+ * @private
810
+ * @name clear
811
+ * @memberOf MapCache
812
+ */
813
+ function mapCacheClear$1() {
814
+ this.size = 0;
815
+ this.__data__ = {
816
+ 'hash': new Hash,
817
+ 'map': new (Map$2 || ListCache$2),
818
+ 'string': new Hash
819
+ };
820
+ }
821
+
822
+ var _mapCacheClear = mapCacheClear$1;
823
+
824
+ /**
825
+ * Checks if `value` is suitable for use as unique object key.
826
+ *
827
+ * @private
828
+ * @param {*} value The value to check.
829
+ * @returns {boolean} Returns `true` if `value` is suitable, else `false`.
830
+ */
831
+
832
+ function isKeyable$1(value) {
833
+ var type = typeof value;
834
+ return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')
835
+ ? (value !== '__proto__')
836
+ : (value === null);
837
+ }
838
+
839
+ var _isKeyable = isKeyable$1;
840
+
841
+ var isKeyable = _isKeyable;
842
+
843
+ /**
844
+ * Gets the data for `map`.
845
+ *
846
+ * @private
847
+ * @param {Object} map The map to query.
848
+ * @param {string} key The reference key.
849
+ * @returns {*} Returns the map data.
850
+ */
851
+ function getMapData$4(map, key) {
852
+ var data = map.__data__;
853
+ return isKeyable(key)
854
+ ? data[typeof key == 'string' ? 'string' : 'hash']
855
+ : data.map;
856
+ }
857
+
858
+ var _getMapData = getMapData$4;
859
+
860
+ var getMapData$3 = _getMapData;
861
+
862
+ /**
863
+ * Removes `key` and its value from the map.
864
+ *
865
+ * @private
866
+ * @name delete
867
+ * @memberOf MapCache
868
+ * @param {string} key The key of the value to remove.
869
+ * @returns {boolean} Returns `true` if the entry was removed, else `false`.
870
+ */
871
+ function mapCacheDelete$1(key) {
872
+ var result = getMapData$3(this, key)['delete'](key);
873
+ this.size -= result ? 1 : 0;
874
+ return result;
875
+ }
876
+
877
+ var _mapCacheDelete = mapCacheDelete$1;
878
+
879
+ var getMapData$2 = _getMapData;
880
+
881
+ /**
882
+ * Gets the map value for `key`.
883
+ *
884
+ * @private
885
+ * @name get
886
+ * @memberOf MapCache
887
+ * @param {string} key The key of the value to get.
888
+ * @returns {*} Returns the entry value.
889
+ */
890
+ function mapCacheGet$1(key) {
891
+ return getMapData$2(this, key).get(key);
892
+ }
893
+
894
+ var _mapCacheGet = mapCacheGet$1;
895
+
896
+ var getMapData$1 = _getMapData;
897
+
898
+ /**
899
+ * Checks if a map value for `key` exists.
900
+ *
901
+ * @private
902
+ * @name has
903
+ * @memberOf MapCache
904
+ * @param {string} key The key of the entry to check.
905
+ * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
906
+ */
907
+ function mapCacheHas$1(key) {
908
+ return getMapData$1(this, key).has(key);
909
+ }
910
+
911
+ var _mapCacheHas = mapCacheHas$1;
912
+
913
+ var getMapData = _getMapData;
914
+
915
+ /**
916
+ * Sets the map `key` to `value`.
917
+ *
918
+ * @private
919
+ * @name set
920
+ * @memberOf MapCache
921
+ * @param {string} key The key of the value to set.
922
+ * @param {*} value The value to set.
923
+ * @returns {Object} Returns the map cache instance.
924
+ */
925
+ function mapCacheSet$1(key, value) {
926
+ var data = getMapData(this, key),
927
+ size = data.size;
928
+
929
+ data.set(key, value);
930
+ this.size += data.size == size ? 0 : 1;
931
+ return this;
932
+ }
933
+
934
+ var _mapCacheSet = mapCacheSet$1;
935
+
936
+ var mapCacheClear = _mapCacheClear,
937
+ mapCacheDelete = _mapCacheDelete,
938
+ mapCacheGet = _mapCacheGet,
939
+ mapCacheHas = _mapCacheHas,
940
+ mapCacheSet = _mapCacheSet;
941
+
942
+ /**
943
+ * Creates a map cache object to store key-value pairs.
944
+ *
945
+ * @private
946
+ * @constructor
947
+ * @param {Array} [entries] The key-value pairs to cache.
948
+ */
949
+ function MapCache$1(entries) {
950
+ var index = -1,
951
+ length = entries == null ? 0 : entries.length;
952
+
953
+ this.clear();
954
+ while (++index < length) {
955
+ var entry = entries[index];
956
+ this.set(entry[0], entry[1]);
957
+ }
958
+ }
959
+
960
+ // Add methods to `MapCache`.
961
+ MapCache$1.prototype.clear = mapCacheClear;
962
+ MapCache$1.prototype['delete'] = mapCacheDelete;
963
+ MapCache$1.prototype.get = mapCacheGet;
964
+ MapCache$1.prototype.has = mapCacheHas;
965
+ MapCache$1.prototype.set = mapCacheSet;
966
+
967
+ var _MapCache = MapCache$1;
968
+
969
+ var ListCache$1 = _ListCache,
970
+ Map$1 = _Map,
971
+ MapCache = _MapCache;
972
+
973
+ /** Used as the size to enable large array optimizations. */
974
+ var LARGE_ARRAY_SIZE = 200;
975
+
976
+ /**
977
+ * Sets the stack `key` to `value`.
978
+ *
979
+ * @private
980
+ * @name set
981
+ * @memberOf Stack
982
+ * @param {string} key The key of the value to set.
983
+ * @param {*} value The value to set.
984
+ * @returns {Object} Returns the stack cache instance.
985
+ */
986
+ function stackSet$1(key, value) {
987
+ var data = this.__data__;
988
+ if (data instanceof ListCache$1) {
989
+ var pairs = data.__data__;
990
+ if (!Map$1 || (pairs.length < LARGE_ARRAY_SIZE - 1)) {
991
+ pairs.push([key, value]);
992
+ this.size = ++data.size;
993
+ return this;
994
+ }
995
+ data = this.__data__ = new MapCache(pairs);
996
+ }
997
+ data.set(key, value);
998
+ this.size = data.size;
999
+ return this;
1000
+ }
1001
+
1002
+ var _stackSet = stackSet$1;
1003
+
1004
+ var ListCache = _ListCache,
1005
+ stackClear = _stackClear,
1006
+ stackDelete = _stackDelete,
1007
+ stackGet = _stackGet,
1008
+ stackHas = _stackHas,
1009
+ stackSet = _stackSet;
1010
+
1011
+ /**
1012
+ * Creates a stack cache object to store key-value pairs.
1013
+ *
1014
+ * @private
1015
+ * @constructor
1016
+ * @param {Array} [entries] The key-value pairs to cache.
1017
+ */
1018
+ function Stack$1(entries) {
1019
+ var data = this.__data__ = new ListCache(entries);
1020
+ this.size = data.size;
1021
+ }
1022
+
1023
+ // Add methods to `Stack`.
1024
+ Stack$1.prototype.clear = stackClear;
1025
+ Stack$1.prototype['delete'] = stackDelete;
1026
+ Stack$1.prototype.get = stackGet;
1027
+ Stack$1.prototype.has = stackHas;
1028
+ Stack$1.prototype.set = stackSet;
1029
+
1030
+ var _Stack = Stack$1;
1031
+
1032
+ var getNative = _getNative;
1033
+
1034
+ var defineProperty$2 = (function() {
1035
+ try {
1036
+ var func = getNative(Object, 'defineProperty');
1037
+ func({}, '', {});
1038
+ return func;
1039
+ } catch (e) {}
1040
+ }());
1041
+
1042
+ var _defineProperty = defineProperty$2;
1043
+
1044
+ var defineProperty$1 = _defineProperty;
1045
+
1046
+ /**
1047
+ * The base implementation of `assignValue` and `assignMergeValue` without
1048
+ * value checks.
1049
+ *
1050
+ * @private
1051
+ * @param {Object} object The object to modify.
1052
+ * @param {string} key The key of the property to assign.
1053
+ * @param {*} value The value to assign.
1054
+ */
1055
+ function baseAssignValue$3(object, key, value) {
1056
+ if (key == '__proto__' && defineProperty$1) {
1057
+ defineProperty$1(object, key, {
1058
+ 'configurable': true,
1059
+ 'enumerable': true,
1060
+ 'value': value,
1061
+ 'writable': true
1062
+ });
1063
+ } else {
1064
+ object[key] = value;
1065
+ }
1066
+ }
1067
+
1068
+ var _baseAssignValue = baseAssignValue$3;
1069
+
1070
+ var baseAssignValue$2 = _baseAssignValue,
1071
+ eq$2 = eq_1;
1072
+
1073
+ /**
1074
+ * This function is like `assignValue` except that it doesn't assign
1075
+ * `undefined` values.
1076
+ *
1077
+ * @private
1078
+ * @param {Object} object The object to modify.
1079
+ * @param {string} key The key of the property to assign.
1080
+ * @param {*} value The value to assign.
1081
+ */
1082
+ function assignMergeValue$2(object, key, value) {
1083
+ if ((value !== undefined && !eq$2(object[key], value)) ||
1084
+ (value === undefined && !(key in object))) {
1085
+ baseAssignValue$2(object, key, value);
1086
+ }
1087
+ }
1088
+
1089
+ var _assignMergeValue = assignMergeValue$2;
1090
+
1091
+ /**
1092
+ * Creates a base function for methods like `_.forIn` and `_.forOwn`.
1093
+ *
1094
+ * @private
1095
+ * @param {boolean} [fromRight] Specify iterating from right to left.
1096
+ * @returns {Function} Returns the new base function.
1097
+ */
1098
+
1099
+ function createBaseFor$1(fromRight) {
1100
+ return function(object, iteratee, keysFunc) {
1101
+ var index = -1,
1102
+ iterable = Object(object),
1103
+ props = keysFunc(object),
1104
+ length = props.length;
1105
+
1106
+ while (length--) {
1107
+ var key = props[fromRight ? length : ++index];
1108
+ if (iteratee(iterable[key], key, iterable) === false) {
1109
+ break;
1110
+ }
1111
+ }
1112
+ return object;
1113
+ };
1114
+ }
1115
+
1116
+ var _createBaseFor = createBaseFor$1;
1117
+
1118
+ var createBaseFor = _createBaseFor;
1119
+
1120
+ /**
1121
+ * The base implementation of `baseForOwn` which iterates over `object`
1122
+ * properties returned by `keysFunc` and invokes `iteratee` for each property.
1123
+ * Iteratee functions may exit iteration early by explicitly returning `false`.
1124
+ *
1125
+ * @private
1126
+ * @param {Object} object The object to iterate over.
1127
+ * @param {Function} iteratee The function invoked per iteration.
1128
+ * @param {Function} keysFunc The function to get the keys of `object`.
1129
+ * @returns {Object} Returns `object`.
1130
+ */
1131
+ var baseFor$1 = createBaseFor();
1132
+
1133
+ var _baseFor = baseFor$1;
1134
+
1135
+ var _cloneBuffer = {exports: {}};
1136
+
1137
+ _cloneBuffer.exports;
1138
+
1139
+ (function (module, exports) {
1140
+ var root = _root;
1141
+
1142
+ /** Detect free variable `exports`. */
1143
+ var freeExports = exports && !exports.nodeType && exports;
1144
+
1145
+ /** Detect free variable `module`. */
1146
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
1147
+
1148
+ /** Detect the popular CommonJS extension `module.exports`. */
1149
+ var moduleExports = freeModule && freeModule.exports === freeExports;
1150
+
1151
+ /** Built-in value references. */
1152
+ var Buffer = moduleExports ? root.Buffer : undefined,
1153
+ allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
1154
+
1155
+ /**
1156
+ * Creates a clone of `buffer`.
1157
+ *
1158
+ * @private
1159
+ * @param {Buffer} buffer The buffer to clone.
1160
+ * @param {boolean} [isDeep] Specify a deep clone.
1161
+ * @returns {Buffer} Returns the cloned buffer.
1162
+ */
1163
+ function cloneBuffer(buffer, isDeep) {
1164
+ if (isDeep) {
1165
+ return buffer.slice();
1166
+ }
1167
+ var length = buffer.length,
1168
+ result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
1169
+
1170
+ buffer.copy(result);
1171
+ return result;
1172
+ }
1173
+
1174
+ module.exports = cloneBuffer;
1175
+ } (_cloneBuffer, _cloneBuffer.exports));
1176
+
1177
+ var _cloneBufferExports = _cloneBuffer.exports;
1178
+
1179
+ var root = _root;
1180
+
1181
+ /** Built-in value references. */
1182
+ var Uint8Array$1 = root.Uint8Array;
1183
+
1184
+ var _Uint8Array = Uint8Array$1;
1185
+
1186
+ var Uint8Array = _Uint8Array;
1187
+
1188
+ /**
1189
+ * Creates a clone of `arrayBuffer`.
1190
+ *
1191
+ * @private
1192
+ * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
1193
+ * @returns {ArrayBuffer} Returns the cloned array buffer.
1194
+ */
1195
+ function cloneArrayBuffer$1(arrayBuffer) {
1196
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
1197
+ new Uint8Array(result).set(new Uint8Array(arrayBuffer));
1198
+ return result;
1199
+ }
1200
+
1201
+ var _cloneArrayBuffer = cloneArrayBuffer$1;
1202
+
1203
+ var cloneArrayBuffer = _cloneArrayBuffer;
1204
+
1205
+ /**
1206
+ * Creates a clone of `typedArray`.
1207
+ *
1208
+ * @private
1209
+ * @param {Object} typedArray The typed array to clone.
1210
+ * @param {boolean} [isDeep] Specify a deep clone.
1211
+ * @returns {Object} Returns the cloned typed array.
1212
+ */
1213
+ function cloneTypedArray$1(typedArray, isDeep) {
1214
+ var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
1215
+ return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
1216
+ }
1217
+
1218
+ var _cloneTypedArray = cloneTypedArray$1;
1219
+
1220
+ /**
1221
+ * Copies the values of `source` to `array`.
1222
+ *
1223
+ * @private
1224
+ * @param {Array} source The array to copy values from.
1225
+ * @param {Array} [array=[]] The array to copy values to.
1226
+ * @returns {Array} Returns `array`.
1227
+ */
1228
+
1229
+ function copyArray$1(source, array) {
1230
+ var index = -1,
1231
+ length = source.length;
1232
+
1233
+ array || (array = Array(length));
1234
+ while (++index < length) {
1235
+ array[index] = source[index];
1236
+ }
1237
+ return array;
1238
+ }
1239
+
1240
+ var _copyArray = copyArray$1;
1241
+
1242
+ var isObject$4 = isObject_1;
1243
+
1244
+ /** Built-in value references. */
1245
+ var objectCreate = Object.create;
1246
+
1247
+ /**
1248
+ * The base implementation of `_.create` without support for assigning
1249
+ * properties to the created object.
1250
+ *
1251
+ * @private
1252
+ * @param {Object} proto The object to inherit from.
1253
+ * @returns {Object} Returns the new object.
1254
+ */
1255
+ var baseCreate$1 = (function() {
1256
+ function object() {}
1257
+ return function(proto) {
1258
+ if (!isObject$4(proto)) {
1259
+ return {};
1260
+ }
1261
+ if (objectCreate) {
1262
+ return objectCreate(proto);
1263
+ }
1264
+ object.prototype = proto;
1265
+ var result = new object;
1266
+ object.prototype = undefined;
1267
+ return result;
1268
+ };
1269
+ }());
1270
+
1271
+ var _baseCreate = baseCreate$1;
1272
+
1273
+ /**
1274
+ * Creates a unary function that invokes `func` with its argument transformed.
1275
+ *
1276
+ * @private
1277
+ * @param {Function} func The function to wrap.
1278
+ * @param {Function} transform The argument transform.
1279
+ * @returns {Function} Returns the new function.
1280
+ */
1281
+
1282
+ function overArg$1(func, transform) {
1283
+ return function(arg) {
1284
+ return func(transform(arg));
1285
+ };
1286
+ }
1287
+
1288
+ var _overArg = overArg$1;
1289
+
1290
+ var overArg = _overArg;
1291
+
1292
+ /** Built-in value references. */
1293
+ var getPrototype$2 = overArg(Object.getPrototypeOf, Object);
1294
+
1295
+ var _getPrototype = getPrototype$2;
1296
+
1297
+ /** Used for built-in method references. */
1298
+
1299
+ var objectProto$5 = Object.prototype;
1300
+
1301
+ /**
1302
+ * Checks if `value` is likely a prototype object.
1303
+ *
1304
+ * @private
1305
+ * @param {*} value The value to check.
1306
+ * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
1307
+ */
1308
+ function isPrototype$2(value) {
1309
+ var Ctor = value && value.constructor,
1310
+ proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$5;
1311
+
1312
+ return value === proto;
1313
+ }
1314
+
1315
+ var _isPrototype = isPrototype$2;
1316
+
1317
+ var baseCreate = _baseCreate,
1318
+ getPrototype$1 = _getPrototype,
1319
+ isPrototype$1 = _isPrototype;
1320
+
1321
+ /**
1322
+ * Initializes an object clone.
1323
+ *
1324
+ * @private
1325
+ * @param {Object} object The object to clone.
1326
+ * @returns {Object} Returns the initialized clone.
1327
+ */
1328
+ function initCloneObject$1(object) {
1329
+ return (typeof object.constructor == 'function' && !isPrototype$1(object))
1330
+ ? baseCreate(getPrototype$1(object))
1331
+ : {};
1332
+ }
1333
+
1334
+ var _initCloneObject = initCloneObject$1;
1335
+
1336
+ /**
1337
+ * Checks if `value` is object-like. A value is object-like if it's not `null`
1338
+ * and has a `typeof` result of "object".
1339
+ *
1340
+ * @static
1341
+ * @memberOf _
1342
+ * @since 4.0.0
1343
+ * @category Lang
1344
+ * @param {*} value The value to check.
1345
+ * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
1346
+ * @example
1347
+ *
1348
+ * _.isObjectLike({});
1349
+ * // => true
1350
+ *
1351
+ * _.isObjectLike([1, 2, 3]);
1352
+ * // => true
1353
+ *
1354
+ * _.isObjectLike(_.noop);
1355
+ * // => false
1356
+ *
1357
+ * _.isObjectLike(null);
1358
+ * // => false
1359
+ */
1360
+
1361
+ function isObjectLike$5(value) {
1362
+ return value != null && typeof value == 'object';
1363
+ }
1364
+
1365
+ var isObjectLike_1 = isObjectLike$5;
1366
+
1367
+ var baseGetTag$2 = _baseGetTag,
1368
+ isObjectLike$4 = isObjectLike_1;
1369
+
1370
+ /** `Object#toString` result references. */
1371
+ var argsTag$1 = '[object Arguments]';
1372
+
1373
+ /**
1374
+ * The base implementation of `_.isArguments`.
1375
+ *
1376
+ * @private
1377
+ * @param {*} value The value to check.
1378
+ * @returns {boolean} Returns `true` if `value` is an `arguments` object,
1379
+ */
1380
+ function baseIsArguments$1(value) {
1381
+ return isObjectLike$4(value) && baseGetTag$2(value) == argsTag$1;
1382
+ }
1383
+
1384
+ var _baseIsArguments = baseIsArguments$1;
1385
+
1386
+ var baseIsArguments = _baseIsArguments,
1387
+ isObjectLike$3 = isObjectLike_1;
1388
+
1389
+ /** Used for built-in method references. */
1390
+ var objectProto$4 = Object.prototype;
1391
+
1392
+ /** Used to check objects for own properties. */
1393
+ var hasOwnProperty$4 = objectProto$4.hasOwnProperty;
1394
+
1395
+ /** Built-in value references. */
1396
+ var propertyIsEnumerable = objectProto$4.propertyIsEnumerable;
1397
+
1398
+ /**
1399
+ * Checks if `value` is likely an `arguments` object.
1400
+ *
1401
+ * @static
1402
+ * @memberOf _
1403
+ * @since 0.1.0
1404
+ * @category Lang
1405
+ * @param {*} value The value to check.
1406
+ * @returns {boolean} Returns `true` if `value` is an `arguments` object,
1407
+ * else `false`.
1408
+ * @example
1409
+ *
1410
+ * _.isArguments(function() { return arguments; }());
1411
+ * // => true
1412
+ *
1413
+ * _.isArguments([1, 2, 3]);
1414
+ * // => false
1415
+ */
1416
+ var isArguments$2 = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {
1417
+ return isObjectLike$3(value) && hasOwnProperty$4.call(value, 'callee') &&
1418
+ !propertyIsEnumerable.call(value, 'callee');
1419
+ };
1420
+
1421
+ var isArguments_1 = isArguments$2;
1422
+
1423
+ /**
1424
+ * Checks if `value` is classified as an `Array` object.
1425
+ *
1426
+ * @static
1427
+ * @memberOf _
1428
+ * @since 0.1.0
1429
+ * @category Lang
1430
+ * @param {*} value The value to check.
1431
+ * @returns {boolean} Returns `true` if `value` is an array, else `false`.
1432
+ * @example
1433
+ *
1434
+ * _.isArray([1, 2, 3]);
1435
+ * // => true
1436
+ *
1437
+ * _.isArray(document.body.children);
1438
+ * // => false
1439
+ *
1440
+ * _.isArray('abc');
1441
+ * // => false
1442
+ *
1443
+ * _.isArray(_.noop);
1444
+ * // => false
1445
+ */
1446
+
1447
+ var isArray$2 = Array.isArray;
1448
+
1449
+ var isArray_1 = isArray$2;
1450
+
1451
+ /** Used as references for various `Number` constants. */
1452
+
1453
+ var MAX_SAFE_INTEGER$1 = 9007199254740991;
1454
+
1455
+ /**
1456
+ * Checks if `value` is a valid array-like length.
1457
+ *
1458
+ * **Note:** This method is loosely based on
1459
+ * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
1460
+ *
1461
+ * @static
1462
+ * @memberOf _
1463
+ * @since 4.0.0
1464
+ * @category Lang
1465
+ * @param {*} value The value to check.
1466
+ * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
1467
+ * @example
1468
+ *
1469
+ * _.isLength(3);
1470
+ * // => true
1471
+ *
1472
+ * _.isLength(Number.MIN_VALUE);
1473
+ * // => false
1474
+ *
1475
+ * _.isLength(Infinity);
1476
+ * // => false
1477
+ *
1478
+ * _.isLength('3');
1479
+ * // => false
1480
+ */
1481
+ function isLength$2(value) {
1482
+ return typeof value == 'number' &&
1483
+ value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER$1;
1484
+ }
1485
+
1486
+ var isLength_1 = isLength$2;
1487
+
1488
+ var isFunction$1 = isFunction_1,
1489
+ isLength$1 = isLength_1;
1490
+
1491
+ /**
1492
+ * Checks if `value` is array-like. A value is considered array-like if it's
1493
+ * not a function and has a `value.length` that's an integer greater than or
1494
+ * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
1495
+ *
1496
+ * @static
1497
+ * @memberOf _
1498
+ * @since 4.0.0
1499
+ * @category Lang
1500
+ * @param {*} value The value to check.
1501
+ * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
1502
+ * @example
1503
+ *
1504
+ * _.isArrayLike([1, 2, 3]);
1505
+ * // => true
1506
+ *
1507
+ * _.isArrayLike(document.body.children);
1508
+ * // => true
1509
+ *
1510
+ * _.isArrayLike('abc');
1511
+ * // => true
1512
+ *
1513
+ * _.isArrayLike(_.noop);
1514
+ * // => false
1515
+ */
1516
+ function isArrayLike$3(value) {
1517
+ return value != null && isLength$1(value.length) && !isFunction$1(value);
1518
+ }
1519
+
1520
+ var isArrayLike_1 = isArrayLike$3;
1521
+
1522
+ var isArrayLike$2 = isArrayLike_1,
1523
+ isObjectLike$2 = isObjectLike_1;
1524
+
1525
+ /**
1526
+ * This method is like `_.isArrayLike` except that it also checks if `value`
1527
+ * is an object.
1528
+ *
1529
+ * @static
1530
+ * @memberOf _
1531
+ * @since 4.0.0
1532
+ * @category Lang
1533
+ * @param {*} value The value to check.
1534
+ * @returns {boolean} Returns `true` if `value` is an array-like object,
1535
+ * else `false`.
1536
+ * @example
1537
+ *
1538
+ * _.isArrayLikeObject([1, 2, 3]);
1539
+ * // => true
1540
+ *
1541
+ * _.isArrayLikeObject(document.body.children);
1542
+ * // => true
1543
+ *
1544
+ * _.isArrayLikeObject('abc');
1545
+ * // => false
1546
+ *
1547
+ * _.isArrayLikeObject(_.noop);
1548
+ * // => false
1549
+ */
1550
+ function isArrayLikeObject$1(value) {
1551
+ return isObjectLike$2(value) && isArrayLike$2(value);
1552
+ }
1553
+
1554
+ var isArrayLikeObject_1 = isArrayLikeObject$1;
1555
+
1556
+ var isBuffer$2 = {exports: {}};
1557
+
1558
+ /**
1559
+ * This method returns `false`.
1560
+ *
1561
+ * @static
1562
+ * @memberOf _
1563
+ * @since 4.13.0
1564
+ * @category Util
1565
+ * @returns {boolean} Returns `false`.
1566
+ * @example
1567
+ *
1568
+ * _.times(2, _.stubFalse);
1569
+ * // => [false, false]
1570
+ */
1571
+
1572
+ function stubFalse() {
1573
+ return false;
1574
+ }
1575
+
1576
+ var stubFalse_1 = stubFalse;
1577
+
1578
+ isBuffer$2.exports;
1579
+
1580
+ (function (module, exports) {
1581
+ var root = _root,
1582
+ stubFalse = stubFalse_1;
1583
+
1584
+ /** Detect free variable `exports`. */
1585
+ var freeExports = exports && !exports.nodeType && exports;
1586
+
1587
+ /** Detect free variable `module`. */
1588
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
1589
+
1590
+ /** Detect the popular CommonJS extension `module.exports`. */
1591
+ var moduleExports = freeModule && freeModule.exports === freeExports;
1592
+
1593
+ /** Built-in value references. */
1594
+ var Buffer = moduleExports ? root.Buffer : undefined;
1595
+
1596
+ /* Built-in method references for those with the same name as other `lodash` methods. */
1597
+ var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
1598
+
1599
+ /**
1600
+ * Checks if `value` is a buffer.
1601
+ *
1602
+ * @static
1603
+ * @memberOf _
1604
+ * @since 4.3.0
1605
+ * @category Lang
1606
+ * @param {*} value The value to check.
1607
+ * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
1608
+ * @example
1609
+ *
1610
+ * _.isBuffer(new Buffer(2));
1611
+ * // => true
1612
+ *
1613
+ * _.isBuffer(new Uint8Array(2));
1614
+ * // => false
1615
+ */
1616
+ var isBuffer = nativeIsBuffer || stubFalse;
1617
+
1618
+ module.exports = isBuffer;
1619
+ } (isBuffer$2, isBuffer$2.exports));
1620
+
1621
+ var isBufferExports = isBuffer$2.exports;
1622
+
1623
+ var baseGetTag$1 = _baseGetTag,
1624
+ getPrototype = _getPrototype,
1625
+ isObjectLike$1 = isObjectLike_1;
1626
+
1627
+ /** `Object#toString` result references. */
1628
+ var objectTag$1 = '[object Object]';
1629
+
1630
+ /** Used for built-in method references. */
1631
+ var funcProto = Function.prototype,
1632
+ objectProto$3 = Object.prototype;
1633
+
1634
+ /** Used to resolve the decompiled source of functions. */
1635
+ var funcToString = funcProto.toString;
1636
+
1637
+ /** Used to check objects for own properties. */
1638
+ var hasOwnProperty$3 = objectProto$3.hasOwnProperty;
1639
+
1640
+ /** Used to infer the `Object` constructor. */
1641
+ var objectCtorString = funcToString.call(Object);
1642
+
1643
+ /**
1644
+ * Checks if `value` is a plain object, that is, an object created by the
1645
+ * `Object` constructor or one with a `[[Prototype]]` of `null`.
1646
+ *
1647
+ * @static
1648
+ * @memberOf _
1649
+ * @since 0.8.0
1650
+ * @category Lang
1651
+ * @param {*} value The value to check.
1652
+ * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.
1653
+ * @example
1654
+ *
1655
+ * function Foo() {
1656
+ * this.a = 1;
1657
+ * }
1658
+ *
1659
+ * _.isPlainObject(new Foo);
1660
+ * // => false
1661
+ *
1662
+ * _.isPlainObject([1, 2, 3]);
1663
+ * // => false
1664
+ *
1665
+ * _.isPlainObject({ 'x': 0, 'y': 0 });
1666
+ * // => true
1667
+ *
1668
+ * _.isPlainObject(Object.create(null));
1669
+ * // => true
1670
+ */
1671
+ function isPlainObject$1(value) {
1672
+ if (!isObjectLike$1(value) || baseGetTag$1(value) != objectTag$1) {
1673
+ return false;
1674
+ }
1675
+ var proto = getPrototype(value);
1676
+ if (proto === null) {
1677
+ return true;
1678
+ }
1679
+ var Ctor = hasOwnProperty$3.call(proto, 'constructor') && proto.constructor;
1680
+ return typeof Ctor == 'function' && Ctor instanceof Ctor &&
1681
+ funcToString.call(Ctor) == objectCtorString;
1682
+ }
1683
+
1684
+ var isPlainObject_1 = isPlainObject$1;
1685
+
1686
+ var baseGetTag = _baseGetTag,
1687
+ isLength = isLength_1,
1688
+ isObjectLike = isObjectLike_1;
1689
+
1690
+ /** `Object#toString` result references. */
1691
+ var argsTag = '[object Arguments]',
1692
+ arrayTag = '[object Array]',
1693
+ boolTag = '[object Boolean]',
1694
+ dateTag = '[object Date]',
1695
+ errorTag = '[object Error]',
1696
+ funcTag = '[object Function]',
1697
+ mapTag = '[object Map]',
1698
+ numberTag = '[object Number]',
1699
+ objectTag = '[object Object]',
1700
+ regexpTag = '[object RegExp]',
1701
+ setTag = '[object Set]',
1702
+ stringTag = '[object String]',
1703
+ weakMapTag = '[object WeakMap]';
1704
+
1705
+ var arrayBufferTag = '[object ArrayBuffer]',
1706
+ dataViewTag = '[object DataView]',
1707
+ float32Tag = '[object Float32Array]',
1708
+ float64Tag = '[object Float64Array]',
1709
+ int8Tag = '[object Int8Array]',
1710
+ int16Tag = '[object Int16Array]',
1711
+ int32Tag = '[object Int32Array]',
1712
+ uint8Tag = '[object Uint8Array]',
1713
+ uint8ClampedTag = '[object Uint8ClampedArray]',
1714
+ uint16Tag = '[object Uint16Array]',
1715
+ uint32Tag = '[object Uint32Array]';
1716
+
1717
+ /** Used to identify `toStringTag` values of typed arrays. */
1718
+ var typedArrayTags = {};
1719
+ typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =
1720
+ typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =
1721
+ typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =
1722
+ typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =
1723
+ typedArrayTags[uint32Tag] = true;
1724
+ typedArrayTags[argsTag] = typedArrayTags[arrayTag] =
1725
+ typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =
1726
+ typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =
1727
+ typedArrayTags[errorTag] = typedArrayTags[funcTag] =
1728
+ typedArrayTags[mapTag] = typedArrayTags[numberTag] =
1729
+ typedArrayTags[objectTag] = typedArrayTags[regexpTag] =
1730
+ typedArrayTags[setTag] = typedArrayTags[stringTag] =
1731
+ typedArrayTags[weakMapTag] = false;
1732
+
1733
+ /**
1734
+ * The base implementation of `_.isTypedArray` without Node.js optimizations.
1735
+ *
1736
+ * @private
1737
+ * @param {*} value The value to check.
1738
+ * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
1739
+ */
1740
+ function baseIsTypedArray$1(value) {
1741
+ return isObjectLike(value) &&
1742
+ isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
1743
+ }
1744
+
1745
+ var _baseIsTypedArray = baseIsTypedArray$1;
1746
+
1747
+ /**
1748
+ * The base implementation of `_.unary` without support for storing metadata.
1749
+ *
1750
+ * @private
1751
+ * @param {Function} func The function to cap arguments for.
1752
+ * @returns {Function} Returns the new capped function.
1753
+ */
1754
+
1755
+ function baseUnary$1(func) {
1756
+ return function(value) {
1757
+ return func(value);
1758
+ };
1759
+ }
1760
+
1761
+ var _baseUnary = baseUnary$1;
1762
+
1763
+ var _nodeUtil = {exports: {}};
1764
+
1765
+ _nodeUtil.exports;
1766
+
1767
+ (function (module, exports) {
1768
+ var freeGlobal = _freeGlobal;
1769
+
1770
+ /** Detect free variable `exports`. */
1771
+ var freeExports = exports && !exports.nodeType && exports;
1772
+
1773
+ /** Detect free variable `module`. */
1774
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
1775
+
1776
+ /** Detect the popular CommonJS extension `module.exports`. */
1777
+ var moduleExports = freeModule && freeModule.exports === freeExports;
1778
+
1779
+ /** Detect free variable `process` from Node.js. */
1780
+ var freeProcess = moduleExports && freeGlobal.process;
1781
+
1782
+ /** Used to access faster Node.js helpers. */
1783
+ var nodeUtil = (function() {
1784
+ try {
1785
+ // Use `util.types` for Node.js 10+.
1786
+ var types = freeModule && freeModule.require && freeModule.require('util').types;
1787
+
1788
+ if (types) {
1789
+ return types;
1790
+ }
1791
+
1792
+ // Legacy `process.binding('util')` for Node.js < 10.
1793
+ return freeProcess && freeProcess.binding && freeProcess.binding('util');
1794
+ } catch (e) {}
1795
+ }());
1796
+
1797
+ module.exports = nodeUtil;
1798
+ } (_nodeUtil, _nodeUtil.exports));
1799
+
1800
+ var _nodeUtilExports = _nodeUtil.exports;
1801
+
1802
+ var baseIsTypedArray = _baseIsTypedArray,
1803
+ baseUnary = _baseUnary,
1804
+ nodeUtil = _nodeUtilExports;
1805
+
1806
+ /* Node.js helper references. */
1807
+ var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
1808
+
1809
+ /**
1810
+ * Checks if `value` is classified as a typed array.
1811
+ *
1812
+ * @static
1813
+ * @memberOf _
1814
+ * @since 3.0.0
1815
+ * @category Lang
1816
+ * @param {*} value The value to check.
1817
+ * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
1818
+ * @example
1819
+ *
1820
+ * _.isTypedArray(new Uint8Array);
1821
+ * // => true
1822
+ *
1823
+ * _.isTypedArray([]);
1824
+ * // => false
1825
+ */
1826
+ var isTypedArray$2 = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
1827
+
1828
+ var isTypedArray_1 = isTypedArray$2;
1829
+
1830
+ /**
1831
+ * Gets the value at `key`, unless `key` is "__proto__" or "constructor".
1832
+ *
1833
+ * @private
1834
+ * @param {Object} object The object to query.
1835
+ * @param {string} key The key of the property to get.
1836
+ * @returns {*} Returns the property value.
1837
+ */
1838
+
1839
+ function safeGet$2(object, key) {
1840
+ if (key === 'constructor' && typeof object[key] === 'function') {
1841
+ return;
1842
+ }
1843
+
1844
+ if (key == '__proto__') {
1845
+ return;
1846
+ }
1847
+
1848
+ return object[key];
1849
+ }
1850
+
1851
+ var _safeGet = safeGet$2;
1852
+
1853
+ var baseAssignValue$1 = _baseAssignValue,
1854
+ eq$1 = eq_1;
1855
+
1856
+ /** Used for built-in method references. */
1857
+ var objectProto$2 = Object.prototype;
1858
+
1859
+ /** Used to check objects for own properties. */
1860
+ var hasOwnProperty$2 = objectProto$2.hasOwnProperty;
1861
+
1862
+ /**
1863
+ * Assigns `value` to `key` of `object` if the existing value is not equivalent
1864
+ * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
1865
+ * for equality comparisons.
1866
+ *
1867
+ * @private
1868
+ * @param {Object} object The object to modify.
1869
+ * @param {string} key The key of the property to assign.
1870
+ * @param {*} value The value to assign.
1871
+ */
1872
+ function assignValue$1(object, key, value) {
1873
+ var objValue = object[key];
1874
+ if (!(hasOwnProperty$2.call(object, key) && eq$1(objValue, value)) ||
1875
+ (value === undefined && !(key in object))) {
1876
+ baseAssignValue$1(object, key, value);
1877
+ }
1878
+ }
1879
+
1880
+ var _assignValue = assignValue$1;
1881
+
1882
+ var assignValue = _assignValue,
1883
+ baseAssignValue = _baseAssignValue;
1884
+
1885
+ /**
1886
+ * Copies properties of `source` to `object`.
1887
+ *
1888
+ * @private
1889
+ * @param {Object} source The object to copy properties from.
1890
+ * @param {Array} props The property identifiers to copy.
1891
+ * @param {Object} [object={}] The object to copy properties to.
1892
+ * @param {Function} [customizer] The function to customize copied values.
1893
+ * @returns {Object} Returns `object`.
1894
+ */
1895
+ function copyObject$1(source, props, object, customizer) {
1896
+ var isNew = !object;
1897
+ object || (object = {});
1898
+
1899
+ var index = -1,
1900
+ length = props.length;
1901
+
1902
+ while (++index < length) {
1903
+ var key = props[index];
1904
+
1905
+ var newValue = customizer
1906
+ ? customizer(object[key], source[key], key, object, source)
1907
+ : undefined;
1908
+
1909
+ if (newValue === undefined) {
1910
+ newValue = source[key];
1911
+ }
1912
+ if (isNew) {
1913
+ baseAssignValue(object, key, newValue);
1914
+ } else {
1915
+ assignValue(object, key, newValue);
20
1916
  }
21
- n.default = e;
22
- return Object.freeze(n);
1917
+ }
1918
+ return object;
23
1919
  }
24
1920
 
25
- var VueI18nModule__namespace = /*#__PURE__*/_interopNamespaceDefault(VueI18nModule);
1921
+ var _copyObject = copyObject$1;
1922
+
1923
+ /**
1924
+ * The base implementation of `_.times` without support for iteratee shorthands
1925
+ * or max array length checks.
1926
+ *
1927
+ * @private
1928
+ * @param {number} n The number of times to invoke `iteratee`.
1929
+ * @param {Function} iteratee The function invoked per iteration.
1930
+ * @returns {Array} Returns the array of results.
1931
+ */
1932
+
1933
+ function baseTimes$1(n, iteratee) {
1934
+ var index = -1,
1935
+ result = Array(n);
1936
+
1937
+ while (++index < n) {
1938
+ result[index] = iteratee(index);
1939
+ }
1940
+ return result;
1941
+ }
1942
+
1943
+ var _baseTimes = baseTimes$1;
1944
+
1945
+ /** Used as references for various `Number` constants. */
1946
+
1947
+ var MAX_SAFE_INTEGER = 9007199254740991;
1948
+
1949
+ /** Used to detect unsigned integer values. */
1950
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
1951
+
1952
+ /**
1953
+ * Checks if `value` is a valid array-like index.
1954
+ *
1955
+ * @private
1956
+ * @param {*} value The value to check.
1957
+ * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
1958
+ * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
1959
+ */
1960
+ function isIndex$2(value, length) {
1961
+ var type = typeof value;
1962
+ length = length == null ? MAX_SAFE_INTEGER : length;
1963
+
1964
+ return !!length &&
1965
+ (type == 'number' ||
1966
+ (type != 'symbol' && reIsUint.test(value))) &&
1967
+ (value > -1 && value % 1 == 0 && value < length);
1968
+ }
1969
+
1970
+ var _isIndex = isIndex$2;
1971
+
1972
+ var baseTimes = _baseTimes,
1973
+ isArguments$1 = isArguments_1,
1974
+ isArray$1 = isArray_1,
1975
+ isBuffer$1 = isBufferExports,
1976
+ isIndex$1 = _isIndex,
1977
+ isTypedArray$1 = isTypedArray_1;
1978
+
1979
+ /** Used for built-in method references. */
1980
+ var objectProto$1 = Object.prototype;
1981
+
1982
+ /** Used to check objects for own properties. */
1983
+ var hasOwnProperty$1 = objectProto$1.hasOwnProperty;
1984
+
1985
+ /**
1986
+ * Creates an array of the enumerable property names of the array-like `value`.
1987
+ *
1988
+ * @private
1989
+ * @param {*} value The value to query.
1990
+ * @param {boolean} inherited Specify returning inherited property names.
1991
+ * @returns {Array} Returns the array of property names.
1992
+ */
1993
+ function arrayLikeKeys$1(value, inherited) {
1994
+ var isArr = isArray$1(value),
1995
+ isArg = !isArr && isArguments$1(value),
1996
+ isBuff = !isArr && !isArg && isBuffer$1(value),
1997
+ isType = !isArr && !isArg && !isBuff && isTypedArray$1(value),
1998
+ skipIndexes = isArr || isArg || isBuff || isType,
1999
+ result = skipIndexes ? baseTimes(value.length, String) : [],
2000
+ length = result.length;
2001
+
2002
+ for (var key in value) {
2003
+ if ((inherited || hasOwnProperty$1.call(value, key)) &&
2004
+ !(skipIndexes && (
2005
+ // Safari 9 has enumerable `arguments.length` in strict mode.
2006
+ key == 'length' ||
2007
+ // Node.js 0.10 has enumerable non-index properties on buffers.
2008
+ (isBuff && (key == 'offset' || key == 'parent')) ||
2009
+ // PhantomJS 2 has enumerable non-index properties on typed arrays.
2010
+ (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
2011
+ // Skip index properties.
2012
+ isIndex$1(key, length)
2013
+ ))) {
2014
+ result.push(key);
2015
+ }
2016
+ }
2017
+ return result;
2018
+ }
2019
+
2020
+ var _arrayLikeKeys = arrayLikeKeys$1;
2021
+
2022
+ /**
2023
+ * This function is like
2024
+ * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
2025
+ * except that it includes inherited enumerable properties.
2026
+ *
2027
+ * @private
2028
+ * @param {Object} object The object to query.
2029
+ * @returns {Array} Returns the array of property names.
2030
+ */
2031
+
2032
+ function nativeKeysIn$1(object) {
2033
+ var result = [];
2034
+ if (object != null) {
2035
+ for (var key in Object(object)) {
2036
+ result.push(key);
2037
+ }
2038
+ }
2039
+ return result;
2040
+ }
2041
+
2042
+ var _nativeKeysIn = nativeKeysIn$1;
2043
+
2044
+ var isObject$3 = isObject_1,
2045
+ isPrototype = _isPrototype,
2046
+ nativeKeysIn = _nativeKeysIn;
2047
+
2048
+ /** Used for built-in method references. */
2049
+ var objectProto = Object.prototype;
2050
+
2051
+ /** Used to check objects for own properties. */
2052
+ var hasOwnProperty = objectProto.hasOwnProperty;
2053
+
2054
+ /**
2055
+ * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
2056
+ *
2057
+ * @private
2058
+ * @param {Object} object The object to query.
2059
+ * @returns {Array} Returns the array of property names.
2060
+ */
2061
+ function baseKeysIn$1(object) {
2062
+ if (!isObject$3(object)) {
2063
+ return nativeKeysIn(object);
2064
+ }
2065
+ var isProto = isPrototype(object),
2066
+ result = [];
2067
+
2068
+ for (var key in object) {
2069
+ if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {
2070
+ result.push(key);
2071
+ }
2072
+ }
2073
+ return result;
2074
+ }
2075
+
2076
+ var _baseKeysIn = baseKeysIn$1;
2077
+
2078
+ var arrayLikeKeys = _arrayLikeKeys,
2079
+ baseKeysIn = _baseKeysIn,
2080
+ isArrayLike$1 = isArrayLike_1;
2081
+
2082
+ /**
2083
+ * Creates an array of the own and inherited enumerable property names of `object`.
2084
+ *
2085
+ * **Note:** Non-object values are coerced to objects.
2086
+ *
2087
+ * @static
2088
+ * @memberOf _
2089
+ * @since 3.0.0
2090
+ * @category Object
2091
+ * @param {Object} object The object to query.
2092
+ * @returns {Array} Returns the array of property names.
2093
+ * @example
2094
+ *
2095
+ * function Foo() {
2096
+ * this.a = 1;
2097
+ * this.b = 2;
2098
+ * }
2099
+ *
2100
+ * Foo.prototype.c = 3;
2101
+ *
2102
+ * _.keysIn(new Foo);
2103
+ * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
2104
+ */
2105
+ function keysIn$2(object) {
2106
+ return isArrayLike$1(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
2107
+ }
2108
+
2109
+ var keysIn_1 = keysIn$2;
2110
+
2111
+ var copyObject = _copyObject,
2112
+ keysIn$1 = keysIn_1;
2113
+
2114
+ /**
2115
+ * Converts `value` to a plain object flattening inherited enumerable string
2116
+ * keyed properties of `value` to own properties of the plain object.
2117
+ *
2118
+ * @static
2119
+ * @memberOf _
2120
+ * @since 3.0.0
2121
+ * @category Lang
2122
+ * @param {*} value The value to convert.
2123
+ * @returns {Object} Returns the converted plain object.
2124
+ * @example
2125
+ *
2126
+ * function Foo() {
2127
+ * this.b = 2;
2128
+ * }
2129
+ *
2130
+ * Foo.prototype.c = 3;
2131
+ *
2132
+ * _.assign({ 'a': 1 }, new Foo);
2133
+ * // => { 'a': 1, 'b': 2 }
2134
+ *
2135
+ * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));
2136
+ * // => { 'a': 1, 'b': 2, 'c': 3 }
2137
+ */
2138
+ function toPlainObject$1(value) {
2139
+ return copyObject(value, keysIn$1(value));
2140
+ }
2141
+
2142
+ var toPlainObject_1 = toPlainObject$1;
2143
+
2144
+ var assignMergeValue$1 = _assignMergeValue,
2145
+ cloneBuffer = _cloneBufferExports,
2146
+ cloneTypedArray = _cloneTypedArray,
2147
+ copyArray = _copyArray,
2148
+ initCloneObject = _initCloneObject,
2149
+ isArguments = isArguments_1,
2150
+ isArray = isArray_1,
2151
+ isArrayLikeObject = isArrayLikeObject_1,
2152
+ isBuffer = isBufferExports,
2153
+ isFunction = isFunction_1,
2154
+ isObject$2 = isObject_1,
2155
+ isPlainObject = isPlainObject_1,
2156
+ isTypedArray = isTypedArray_1,
2157
+ safeGet$1 = _safeGet,
2158
+ toPlainObject = toPlainObject_1;
2159
+
2160
+ /**
2161
+ * A specialized version of `baseMerge` for arrays and objects which performs
2162
+ * deep merges and tracks traversed objects enabling objects with circular
2163
+ * references to be merged.
2164
+ *
2165
+ * @private
2166
+ * @param {Object} object The destination object.
2167
+ * @param {Object} source The source object.
2168
+ * @param {string} key The key of the value to merge.
2169
+ * @param {number} srcIndex The index of `source`.
2170
+ * @param {Function} mergeFunc The function to merge values.
2171
+ * @param {Function} [customizer] The function to customize assigned values.
2172
+ * @param {Object} [stack] Tracks traversed source values and their merged
2173
+ * counterparts.
2174
+ */
2175
+ function baseMergeDeep$1(object, source, key, srcIndex, mergeFunc, customizer, stack) {
2176
+ var objValue = safeGet$1(object, key),
2177
+ srcValue = safeGet$1(source, key),
2178
+ stacked = stack.get(srcValue);
2179
+
2180
+ if (stacked) {
2181
+ assignMergeValue$1(object, key, stacked);
2182
+ return;
2183
+ }
2184
+ var newValue = customizer
2185
+ ? customizer(objValue, srcValue, (key + ''), object, source, stack)
2186
+ : undefined;
2187
+
2188
+ var isCommon = newValue === undefined;
2189
+
2190
+ if (isCommon) {
2191
+ var isArr = isArray(srcValue),
2192
+ isBuff = !isArr && isBuffer(srcValue),
2193
+ isTyped = !isArr && !isBuff && isTypedArray(srcValue);
2194
+
2195
+ newValue = srcValue;
2196
+ if (isArr || isBuff || isTyped) {
2197
+ if (isArray(objValue)) {
2198
+ newValue = objValue;
2199
+ }
2200
+ else if (isArrayLikeObject(objValue)) {
2201
+ newValue = copyArray(objValue);
2202
+ }
2203
+ else if (isBuff) {
2204
+ isCommon = false;
2205
+ newValue = cloneBuffer(srcValue, true);
2206
+ }
2207
+ else if (isTyped) {
2208
+ isCommon = false;
2209
+ newValue = cloneTypedArray(srcValue, true);
2210
+ }
2211
+ else {
2212
+ newValue = [];
2213
+ }
2214
+ }
2215
+ else if (isPlainObject(srcValue) || isArguments(srcValue)) {
2216
+ newValue = objValue;
2217
+ if (isArguments(objValue)) {
2218
+ newValue = toPlainObject(objValue);
2219
+ }
2220
+ else if (!isObject$2(objValue) || isFunction(objValue)) {
2221
+ newValue = initCloneObject(srcValue);
2222
+ }
2223
+ }
2224
+ else {
2225
+ isCommon = false;
2226
+ }
2227
+ }
2228
+ if (isCommon) {
2229
+ // Recursively merge objects and arrays (susceptible to call stack limits).
2230
+ stack.set(srcValue, newValue);
2231
+ mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
2232
+ stack['delete'](srcValue);
2233
+ }
2234
+ assignMergeValue$1(object, key, newValue);
2235
+ }
2236
+
2237
+ var _baseMergeDeep = baseMergeDeep$1;
2238
+
2239
+ var Stack = _Stack,
2240
+ assignMergeValue = _assignMergeValue,
2241
+ baseFor = _baseFor,
2242
+ baseMergeDeep = _baseMergeDeep,
2243
+ isObject$1 = isObject_1,
2244
+ keysIn = keysIn_1,
2245
+ safeGet = _safeGet;
2246
+
2247
+ /**
2248
+ * The base implementation of `_.merge` without support for multiple sources.
2249
+ *
2250
+ * @private
2251
+ * @param {Object} object The destination object.
2252
+ * @param {Object} source The source object.
2253
+ * @param {number} srcIndex The index of `source`.
2254
+ * @param {Function} [customizer] The function to customize merged values.
2255
+ * @param {Object} [stack] Tracks traversed source values and their merged
2256
+ * counterparts.
2257
+ */
2258
+ function baseMerge$1(object, source, srcIndex, customizer, stack) {
2259
+ if (object === source) {
2260
+ return;
2261
+ }
2262
+ baseFor(source, function(srcValue, key) {
2263
+ stack || (stack = new Stack);
2264
+ if (isObject$1(srcValue)) {
2265
+ baseMergeDeep(object, source, key, srcIndex, baseMerge$1, customizer, stack);
2266
+ }
2267
+ else {
2268
+ var newValue = customizer
2269
+ ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)
2270
+ : undefined;
2271
+
2272
+ if (newValue === undefined) {
2273
+ newValue = srcValue;
2274
+ }
2275
+ assignMergeValue(object, key, newValue);
2276
+ }
2277
+ }, keysIn);
2278
+ }
2279
+
2280
+ var _baseMerge = baseMerge$1;
2281
+
2282
+ /**
2283
+ * This method returns the first argument it receives.
2284
+ *
2285
+ * @static
2286
+ * @since 0.1.0
2287
+ * @memberOf _
2288
+ * @category Util
2289
+ * @param {*} value Any value.
2290
+ * @returns {*} Returns `value`.
2291
+ * @example
2292
+ *
2293
+ * var object = { 'a': 1 };
2294
+ *
2295
+ * console.log(_.identity(object) === object);
2296
+ * // => true
2297
+ */
2298
+
2299
+ function identity$2(value) {
2300
+ return value;
2301
+ }
2302
+
2303
+ var identity_1 = identity$2;
2304
+
2305
+ /**
2306
+ * A faster alternative to `Function#apply`, this function invokes `func`
2307
+ * with the `this` binding of `thisArg` and the arguments of `args`.
2308
+ *
2309
+ * @private
2310
+ * @param {Function} func The function to invoke.
2311
+ * @param {*} thisArg The `this` binding of `func`.
2312
+ * @param {Array} args The arguments to invoke `func` with.
2313
+ * @returns {*} Returns the result of `func`.
2314
+ */
2315
+
2316
+ function apply$1(func, thisArg, args) {
2317
+ switch (args.length) {
2318
+ case 0: return func.call(thisArg);
2319
+ case 1: return func.call(thisArg, args[0]);
2320
+ case 2: return func.call(thisArg, args[0], args[1]);
2321
+ case 3: return func.call(thisArg, args[0], args[1], args[2]);
2322
+ }
2323
+ return func.apply(thisArg, args);
2324
+ }
2325
+
2326
+ var _apply = apply$1;
2327
+
2328
+ var apply = _apply;
2329
+
2330
+ /* Built-in method references for those with the same name as other `lodash` methods. */
2331
+ var nativeMax = Math.max;
2332
+
2333
+ /**
2334
+ * A specialized version of `baseRest` which transforms the rest array.
2335
+ *
2336
+ * @private
2337
+ * @param {Function} func The function to apply a rest parameter to.
2338
+ * @param {number} [start=func.length-1] The start position of the rest parameter.
2339
+ * @param {Function} transform The rest array transform.
2340
+ * @returns {Function} Returns the new function.
2341
+ */
2342
+ function overRest$1(func, start, transform) {
2343
+ start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
2344
+ return function() {
2345
+ var args = arguments,
2346
+ index = -1,
2347
+ length = nativeMax(args.length - start, 0),
2348
+ array = Array(length);
2349
+
2350
+ while (++index < length) {
2351
+ array[index] = args[start + index];
2352
+ }
2353
+ index = -1;
2354
+ var otherArgs = Array(start + 1);
2355
+ while (++index < start) {
2356
+ otherArgs[index] = args[index];
2357
+ }
2358
+ otherArgs[start] = transform(array);
2359
+ return apply(func, this, otherArgs);
2360
+ };
2361
+ }
2362
+
2363
+ var _overRest = overRest$1;
2364
+
2365
+ /**
2366
+ * Creates a function that returns `value`.
2367
+ *
2368
+ * @static
2369
+ * @memberOf _
2370
+ * @since 2.4.0
2371
+ * @category Util
2372
+ * @param {*} value The value to return from the new function.
2373
+ * @returns {Function} Returns the new constant function.
2374
+ * @example
2375
+ *
2376
+ * var objects = _.times(2, _.constant({ 'a': 1 }));
2377
+ *
2378
+ * console.log(objects);
2379
+ * // => [{ 'a': 1 }, { 'a': 1 }]
2380
+ *
2381
+ * console.log(objects[0] === objects[1]);
2382
+ * // => true
2383
+ */
2384
+
2385
+ function constant$1(value) {
2386
+ return function() {
2387
+ return value;
2388
+ };
2389
+ }
2390
+
2391
+ var constant_1 = constant$1;
2392
+
2393
+ var constant = constant_1,
2394
+ defineProperty = _defineProperty,
2395
+ identity$1 = identity_1;
2396
+
2397
+ /**
2398
+ * The base implementation of `setToString` without support for hot loop shorting.
2399
+ *
2400
+ * @private
2401
+ * @param {Function} func The function to modify.
2402
+ * @param {Function} string The `toString` result.
2403
+ * @returns {Function} Returns `func`.
2404
+ */
2405
+ var baseSetToString$1 = !defineProperty ? identity$1 : function(func, string) {
2406
+ return defineProperty(func, 'toString', {
2407
+ 'configurable': true,
2408
+ 'enumerable': false,
2409
+ 'value': constant(string),
2410
+ 'writable': true
2411
+ });
2412
+ };
2413
+
2414
+ var _baseSetToString = baseSetToString$1;
2415
+
2416
+ /** Used to detect hot functions by number of calls within a span of milliseconds. */
2417
+
2418
+ var HOT_COUNT = 800,
2419
+ HOT_SPAN = 16;
2420
+
2421
+ /* Built-in method references for those with the same name as other `lodash` methods. */
2422
+ var nativeNow = Date.now;
2423
+
2424
+ /**
2425
+ * Creates a function that'll short out and invoke `identity` instead
2426
+ * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
2427
+ * milliseconds.
2428
+ *
2429
+ * @private
2430
+ * @param {Function} func The function to restrict.
2431
+ * @returns {Function} Returns the new shortable function.
2432
+ */
2433
+ function shortOut$1(func) {
2434
+ var count = 0,
2435
+ lastCalled = 0;
2436
+
2437
+ return function() {
2438
+ var stamp = nativeNow(),
2439
+ remaining = HOT_SPAN - (stamp - lastCalled);
2440
+
2441
+ lastCalled = stamp;
2442
+ if (remaining > 0) {
2443
+ if (++count >= HOT_COUNT) {
2444
+ return arguments[0];
2445
+ }
2446
+ } else {
2447
+ count = 0;
2448
+ }
2449
+ return func.apply(undefined, arguments);
2450
+ };
2451
+ }
2452
+
2453
+ var _shortOut = shortOut$1;
2454
+
2455
+ var baseSetToString = _baseSetToString,
2456
+ shortOut = _shortOut;
2457
+
2458
+ /**
2459
+ * Sets the `toString` method of `func` to return `string`.
2460
+ *
2461
+ * @private
2462
+ * @param {Function} func The function to modify.
2463
+ * @param {Function} string The `toString` result.
2464
+ * @returns {Function} Returns `func`.
2465
+ */
2466
+ var setToString$1 = shortOut(baseSetToString);
2467
+
2468
+ var _setToString = setToString$1;
2469
+
2470
+ var identity = identity_1,
2471
+ overRest = _overRest,
2472
+ setToString = _setToString;
2473
+
2474
+ /**
2475
+ * The base implementation of `_.rest` which doesn't validate or coerce arguments.
2476
+ *
2477
+ * @private
2478
+ * @param {Function} func The function to apply a rest parameter to.
2479
+ * @param {number} [start=func.length-1] The start position of the rest parameter.
2480
+ * @returns {Function} Returns the new function.
2481
+ */
2482
+ function baseRest$1(func, start) {
2483
+ return setToString(overRest(func, start, identity), func + '');
2484
+ }
2485
+
2486
+ var _baseRest = baseRest$1;
2487
+
2488
+ var eq = eq_1,
2489
+ isArrayLike = isArrayLike_1,
2490
+ isIndex = _isIndex,
2491
+ isObject = isObject_1;
2492
+
2493
+ /**
2494
+ * Checks if the given arguments are from an iteratee call.
2495
+ *
2496
+ * @private
2497
+ * @param {*} value The potential iteratee value argument.
2498
+ * @param {*} index The potential iteratee index or key argument.
2499
+ * @param {*} object The potential iteratee object argument.
2500
+ * @returns {boolean} Returns `true` if the arguments are from an iteratee call,
2501
+ * else `false`.
2502
+ */
2503
+ function isIterateeCall$1(value, index, object) {
2504
+ if (!isObject(object)) {
2505
+ return false;
2506
+ }
2507
+ var type = typeof index;
2508
+ if (type == 'number'
2509
+ ? (isArrayLike(object) && isIndex(index, object.length))
2510
+ : (type == 'string' && index in object)
2511
+ ) {
2512
+ return eq(object[index], value);
2513
+ }
2514
+ return false;
2515
+ }
2516
+
2517
+ var _isIterateeCall = isIterateeCall$1;
2518
+
2519
+ var baseRest = _baseRest,
2520
+ isIterateeCall = _isIterateeCall;
2521
+
2522
+ /**
2523
+ * Creates a function like `_.assign`.
2524
+ *
2525
+ * @private
2526
+ * @param {Function} assigner The function to assign values.
2527
+ * @returns {Function} Returns the new assigner function.
2528
+ */
2529
+ function createAssigner$1(assigner) {
2530
+ return baseRest(function(object, sources) {
2531
+ var index = -1,
2532
+ length = sources.length,
2533
+ customizer = length > 1 ? sources[length - 1] : undefined,
2534
+ guard = length > 2 ? sources[2] : undefined;
2535
+
2536
+ customizer = (assigner.length > 3 && typeof customizer == 'function')
2537
+ ? (length--, customizer)
2538
+ : undefined;
2539
+
2540
+ if (guard && isIterateeCall(sources[0], sources[1], guard)) {
2541
+ customizer = length < 3 ? undefined : customizer;
2542
+ length = 1;
2543
+ }
2544
+ object = Object(object);
2545
+ while (++index < length) {
2546
+ var source = sources[index];
2547
+ if (source) {
2548
+ assigner(object, source, index, customizer);
2549
+ }
2550
+ }
2551
+ return object;
2552
+ });
2553
+ }
2554
+
2555
+ var _createAssigner = createAssigner$1;
2556
+
2557
+ var baseMerge = _baseMerge,
2558
+ createAssigner = _createAssigner;
2559
+
2560
+ /**
2561
+ * This method is like `_.assign` except that it recursively merges own and
2562
+ * inherited enumerable string keyed properties of source objects into the
2563
+ * destination object. Source properties that resolve to `undefined` are
2564
+ * skipped if a destination value exists. Array and plain object properties
2565
+ * are merged recursively. Other objects and value types are overridden by
2566
+ * assignment. Source objects are applied from left to right. Subsequent
2567
+ * sources overwrite property assignments of previous sources.
2568
+ *
2569
+ * **Note:** This method mutates `object`.
2570
+ *
2571
+ * @static
2572
+ * @memberOf _
2573
+ * @since 0.5.0
2574
+ * @category Object
2575
+ * @param {Object} object The destination object.
2576
+ * @param {...Object} [sources] The source objects.
2577
+ * @returns {Object} Returns `object`.
2578
+ * @example
2579
+ *
2580
+ * var object = {
2581
+ * 'a': [{ 'b': 2 }, { 'd': 4 }]
2582
+ * };
2583
+ *
2584
+ * var other = {
2585
+ * 'a': [{ 'c': 3 }, { 'e': 5 }]
2586
+ * };
2587
+ *
2588
+ * _.merge(object, other);
2589
+ * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }
2590
+ */
2591
+ var merge = createAssigner(function(object, source, srcIndex) {
2592
+ baseMerge(object, source, srcIndex);
2593
+ });
2594
+
2595
+ var merge_1 = merge;
2596
+
2597
+ var merge$1 = /*@__PURE__*/getDefaultExportFromCjs(merge_1);
26
2598
 
27
2599
  /**
28
2600
  * 缓存管理类
@@ -153,7 +2725,7 @@ class CacheManager {
153
2725
  ...other,
154
2726
  };
155
2727
  // 合并基础语言包和缓存的语言包
156
- const mergedMessages = lodash.merge({}, this.baseMessages, correctDictionaryData);
2728
+ const mergedMessages = merge$1({}, this.baseMessages, correctDictionaryData);
157
2729
  console.log("国际化 初始化合并完成,最终语言包:", Object.keys(mergedMessages));
158
2730
  return mergedMessages;
159
2731
  }
@@ -688,7 +3260,7 @@ class TranslateManager {
688
3260
  // 获取 i18n.global 中现有的语言包
689
3261
  const currentMessages = this.getI18nMessages();
690
3262
  // 使用 Lodash merge 深度合并
691
- const allMessage = lodash.merge({}, currentMessages, correctDictionaryData);
3263
+ const allMessage = merge$1({}, currentMessages, correctDictionaryData);
692
3264
  this.log('合并后的语言包:', allMessage);
693
3265
  // 更新 i18n 实例的语言包
694
3266
  Object.keys(allMessage).forEach((langCode) => {