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.
- package/CHANGELOG.md +6 -0
- package/dist/api/tojs.d.ts +4 -1
- package/dist/mobx.cjs.development.js +4 -1
- package/dist/mobx.cjs.development.js.map +1 -1
- package/dist/mobx.cjs.production.min.js.map +1 -1
- package/dist/mobx.esm.development.js +4 -1
- package/dist/mobx.esm.development.js.map +1 -1
- package/dist/mobx.esm.js +4 -1
- package/dist/mobx.esm.js.map +1 -1
- package/dist/mobx.esm.production.min.js.map +1 -1
- package/dist/mobx.umd.development.js +4 -1
- package/dist/mobx.umd.development.js.map +1 -1
- package/dist/mobx.umd.production.min.js.map +1 -1
- package/package.json +1 -1
- package/src/api/tojs.ts +4 -1
|
@@ -3220,7 +3220,10 @@ function toJSHelper(source, __alreadySeen) {
|
|
|
3220
3220
|
}
|
|
3221
3221
|
}
|
|
3222
3222
|
/**
|
|
3223
|
-
*
|
|
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
|
|