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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # mobx
2
2
 
3
+ ## 6.15.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`105c985c71308e439bfeed118fb1ba1eac06824e`](https://github.com/mobxjs/mobx/commit/105c985c71308e439bfeed118fb1ba1eac06824e) [#4650](https://github.com/mobxjs/mobx/pull/4650) Thanks [@kubk](https://github.com/kubk)! - Avoid Rolldown invalid PURE annotation warnings from Babel-generated optional chaining output.
8
+
3
9
  ## 6.15.3
4
10
 
5
11
  ### Patch Changes
@@ -5948,9 +5948,10 @@ function unwrap(a) {
5948
5948
  return a;
5949
5949
  }
5950
5950
 
5951
- var _getGlobal$Iterator;
5951
+ var _global$Iterator;
5952
5952
  // safely get iterator prototype if available
5953
- var maybeIteratorPrototype = ((_getGlobal$Iterator = /*#__PURE__*/getGlobal().Iterator) == null ? void 0 : _getGlobal$Iterator.prototype) || {};
5953
+ var global$1 = /*#__PURE__*/getGlobal();
5954
+ var maybeIteratorPrototype = ((_global$Iterator = global$1.Iterator) == null ? void 0 : _global$Iterator.prototype) || {};
5954
5955
  function makeIterable(iterator) {
5955
5956
  iterator[Symbol.iterator] = getSelf;
5956
5957
  return Object.assign(Object.create(maybeIteratorPrototype), iterator);