mobx 6.15.3 → 6.15.4

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.
@@ -5944,9 +5944,10 @@ function unwrap(a) {
5944
5944
  return a;
5945
5945
  }
5946
5946
 
5947
- var _getGlobal$Iterator;
5947
+ var _global$Iterator;
5948
5948
  // safely get iterator prototype if available
5949
- var maybeIteratorPrototype = ((_getGlobal$Iterator = /*#__PURE__*/getGlobal().Iterator) == null ? void 0 : _getGlobal$Iterator.prototype) || {};
5949
+ var global$1 = /*#__PURE__*/getGlobal();
5950
+ var maybeIteratorPrototype = ((_global$Iterator = global$1.Iterator) == null ? void 0 : _global$Iterator.prototype) || {};
5950
5951
  function makeIterable(iterator) {
5951
5952
  iterator[Symbol.iterator] = getSelf;
5952
5953
  return Object.assign(Object.create(maybeIteratorPrototype), iterator);