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
package/dist/mobx.esm.js
CHANGED
|
@@ -3233,7 +3233,10 @@ function toJSHelper(source, __alreadySeen) {
|
|
|
3233
3233
|
}
|
|
3234
3234
|
}
|
|
3235
3235
|
/**
|
|
3236
|
-
*
|
|
3236
|
+
* Recursively converts an observable to it's non-observable native counterpart.
|
|
3237
|
+
* It does NOT recurse into non-observables, these are left as they are, even if they contain observables.
|
|
3238
|
+
* Computed and other non-enumerable properties are completely ignored.
|
|
3239
|
+
* Complex scenarios require custom solution, eg implementing `toJSON` or using `serializr` lib.
|
|
3237
3240
|
*/
|
|
3238
3241
|
|
|
3239
3242
|
|