From 7272e334bbc65a6f1059baad78c33c2ecca3d533 Mon Sep 17 00:00:00 2001 From: Peter Velkov Date: Fri, 21 Nov 2025 09:21:42 +0200 Subject: [PATCH] docs: Fix mistake on Proxy compatibility (#4598) --- docs/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index 49c257446..b6bae03c2 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -57,7 +57,7 @@ if (!new class { x }().hasOwnProperty('x')) throw new Error('Transpiler is not c ## MobX on older JavaScript environments -By default, MobX uses proxies for optimal performance and compatibility. However, on older JavaScript engines `Proxy` is not available (check out [Proxy support](https://compat-table.github.io/compat-table/es6/#test-Proxy)). Examples of such are Internet Explorer (before Edge), Node.js < 6, iOS < 10, Android before RN 0.59, or Android on iOS. +By default, MobX uses proxies for optimal performance and compatibility. However, on older JavaScript engines `Proxy` is not available (check out [Proxy support](https://compat-table.github.io/compat-table/es6/#test-Proxy)). Examples of such are Internet Explorer (before Edge), Node.js < 6, iOS < 10, Android before RN 0.59. In such cases, MobX can fallback to an ES5 compatible implementation which works almost identically, although there are a few [limitations without Proxy support](configuration.md#limitations-without-proxy-support). You will have to explicitly enable the fallback implementation by configuring [`useProxies`](configuration.md#proxy-support):