ut2 1.4.6 → 1.4.7

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
@@ -381,7 +381,6 @@
381
381
  }
382
382
 
383
383
  var symbolToString = symbolProto ? symbolProto.toString : undefined;
384
-
385
384
  function baseToString(value) {
386
385
  if (typeof value === 'string') {
387
386
  return value;
@@ -473,7 +472,7 @@
473
472
  return value == null || value !== value ? defaultValue : value;
474
473
  }
475
474
 
476
- var VERSION = "1.4.6";
475
+ var VERSION = "1.4.7";
477
476
  var supportedArgumentsType = objectToString.call((function () { return arguments; })()) === argumentsTag;
478
477
  var FUNC_ERROR_TEXT = 'Expected a function';
479
478
  function toSource(func) {
@@ -870,8 +869,6 @@
870
869
  return Object.keys(object).concat(getSymbols(object));
871
870
  }
872
871
 
873
- var symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
874
-
875
872
  function isNil(value) {
876
873
  return value == null;
877
874
  }
@@ -887,6 +884,7 @@
887
884
  return false;
888
885
  }
889
886
 
887
+ var symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
890
888
  function mapToArray(map) {
891
889
  var result = [];
892
890
  map.forEach(function (value, key) {