gs-idb-pro 0.1.0 → 0.1.2
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 +5 -2
- package/lib/index.cjs +1247 -1
- package/lib/index.d.ts +3 -3
- package/lib/index.js +1281 -1
- package/lib/index.web.js +1555 -1
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# gs-idb-pro
|
|
2
|
+
|
|
3
|
+
> A full-featured wrapper for browser IndexedDB
|
|
4
|
+
|
|
2
5
|
<details>
|
|
3
6
|
<summary>中文</summary>
|
|
4
7
|
|
|
@@ -7,7 +10,7 @@
|
|
|
7
10
|
|
|
8
11
|
## 安装
|
|
9
12
|
```shell
|
|
10
|
-
npx yarn gs-idb-pro
|
|
13
|
+
npx yarn add gs-idb-pro
|
|
11
14
|
```
|
|
12
15
|
|
|
13
16
|
## 使用
|
|
@@ -179,7 +182,7 @@ db2.store('db2-store-2')
|
|
|
179
182
|
|
|
180
183
|
## Installation
|
|
181
184
|
```shell
|
|
182
|
-
npx yarn gs-idb-pro
|
|
185
|
+
npx yarn add gs-idb-pro
|
|
183
186
|
```
|
|
184
187
|
|
|
185
188
|
## Usage
|