ut2 1.10.0 → 1.10.1

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.
package/dist/ut2.js CHANGED
@@ -605,7 +605,7 @@
605
605
  return value == null || value !== value ? defaultValue : value;
606
606
  };
607
607
 
608
- var VERSION = "1.10.0";
608
+ var VERSION = "1.10.1";
609
609
  var isBrowser = typeof window !== stringUndefined && isObjectLike(window) && typeof document !== stringUndefined && isObjectLike(document) && window.document === document;
610
610
  var supportedArgumentsType = getTag((function () { return arguments; })()) === argumentsTag;
611
611
  var FUNC_ERROR_TEXT = 'Expected a function';
@@ -1498,6 +1498,7 @@
1498
1498
  if (getKeys === void 0) { getKeys = allKeys; }
1499
1499
  return baseMerge(object, source, getKeys, customizer);
1500
1500
  }
1501
+ merge.NOT_MERGE_ARRAYS = function (objValue, srcValue) { return (isArray(srcValue) ? srcValue : undefined); };
1501
1502
 
1502
1503
  function castArray(value) {
1503
1504
  if (!arguments.length) {