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 a0cfd47 commit c5d2c66Copy full SHA for c5d2c66
README.md
@@ -15,6 +15,28 @@
15
- [Spread](#-spread)
16
- [SplitMap](#-splitmap)
17
18
+## Usage
19
+
20
+```bash
21
+npm install patronum
22
+# or
23
+yarn add patronum
24
+```
25
26
+Import function by its name from `patronum`:
27
28
+```ts
29
+import { delay } from 'patronum/delay';
30
31
32
+Also use can import it from index:
33
34
+> Be careful, with this method, all functions will be at your bundle
35
36
37
+import { delay } from 'patronum';
38
39
40
## [🧁 Condition](/condition 'Documentation')
41
42
```ts
0 commit comments