()
| 21 | const plainObjectString = Object.toString() |
| 22 | |
| 23 | export function assertProxies() { |
| 24 | if (!hasProxy) { |
| 25 | die( |
| 26 | __DEV__ |
| 27 | ? "`Proxy` objects are not available in the current environment. Please configure MobX to enable a fallback implementation.`" |
| 28 | : "Proxy not available" |
| 29 | ) |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | export function warnAboutProxyRequirement(msg: string) { |
| 34 | if (__DEV__ && globalState.verifyProxies) { |
no test coverage detected
searching dependent graphs…