You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/zone.js/MODULE.md
+16-10Lines changed: 16 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Modules
2
2
3
-
Starting from zone.js v0.8.9, you can choose which web API modules you want to patch as to reduce overhead introduced by the patching of these modules. For example,
4
-
the below samples show how to disable some modules. You just need to define a few global variables
3
+
Starting from zone.js v0.8.9, you can choose which web API modules you want to patch as to reduce overhead introduced by the patching of these modules. For example,
4
+
the below samples show how to disable some modules. You just need to define a few global variables
5
5
before loading zone.js.
6
6
7
7
```
@@ -18,7 +18,7 @@ before loading zone.js.
18
18
19
19
Below is the full list of currently supported modules.
20
20
21
-
- Common
21
+
- Common
22
22
23
23
|Module Name|Behavior with zone.js patch|How to disable|
24
24
|--|--|--|
@@ -55,6 +55,12 @@ Below is the full list of currently supported modules.
55
55
|handleUnhandledPromiseRejection|NodeJS handle unhandledPromiseRejection from ZoneAwarePromise|__Zone_disable_handleUnhandledPromiseRejection = true|
56
56
|crypto|NodeJS patch crypto function as macroTask|__Zone_disable_crypto = true|
57
57
58
+
- Test Framework
59
+
|Module Name|Behavior with zone.js patch|How to disable|
0 commit comments