We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e930248 commit 94ead23Copy full SHA for 94ead23
docs/guides/quick-start-guide.md
@@ -5,6 +5,18 @@ title: 'Quick Start Guide'
5
6
This Guide will show how to setup this package for basic use
7
8
+:::note
9
+The Examples on this page assume Top-Level async-await for readability.
10
+If Top-Level async-await is not available for your case, the code can in most cases be wrapped like:
11
+
12
+```ts
13
+(async () => {
14
+ // async code in where
15
+})();
16
+```
17
18
+:::
19
20
## Requirements
21
22
- NodeJS: 12.22+
0 commit comments