mobx 6.3.10 → 6.3.11

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.
@@ -3220,7 +3220,10 @@ function toJSHelper(source, __alreadySeen) {
3220
3220
  }
3221
3221
  }
3222
3222
  /**
3223
- * Basically, a deep clone, so that no reactive property will exist anymore.
3223
+ * Recursively converts an observable to it's non-observable native counterpart.
3224
+ * It does NOT recurse into non-observables, these are left as they are, even if they contain observables.
3225
+ * Computed and other non-enumerable properties are completely ignored.
3226
+ * Complex scenarios require custom solution, eg implementing `toJSON` or using `serializr` lib.
3224
3227
  */
3225
3228
 
3226
3229