@fbltd/async 1.0.13 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Async tools
|
|
2
2
|
|
|
3
|
+
## Disclaimer
|
|
4
|
+
Now this package is CommonJS module but should be an ESM.
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
You can install this package with your favorite package manager.<br/>
|
|
8
|
+
Npm, for example, will be looks like:
|
|
9
|
+
```npm i @fbltd/async```
|
|
10
|
+
|
|
3
11
|
## Overview
|
|
4
12
|
|
|
5
13
|
### delay
|
|
@@ -99,10 +107,4 @@ export const Counter: React.FC<ITest> = React.memo(({
|
|
|
99
107
|
</div>
|
|
100
108
|
)
|
|
101
109
|
})
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
### Disclaimer
|
|
105
|
-
Now this package is CommonJS module but should be an ESM.
|
|
106
|
-
|
|
107
|
-
## Installation
|
|
108
|
-
Just type ```npm i @fbltd/async```
|
|
110
|
+
```
|