@codeplaydata/adapters
Advanced tools
Comparing version 0.4.4 to 0.4.5
{ | ||
"name": "@codeplaydata/adapters", | ||
"version": "0.4.4", | ||
"version": "0.4.5", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,3 +5,3 @@ <div align="center"> | ||
![](./assets/adapters-dark-logo.png) | ||
![](./assets/adapters-white-logo.png) | ||
@@ -47,6 +47,8 @@ </div> | ||
<br> | ||
### Fetch | ||
```typescript | ||
import { Fetch } form "@codeplaydata/adapters"; | ||
import { Fetch } from "@codeplaydata/adapters"; | ||
@@ -57,2 +59,17 @@ const httpClient = new Fetch(); | ||
``` | ||
``` | ||
<br> | ||
### GenericQueue | ||
```typescript | ||
import { GenericQueue } from "@codeplaydata/adapters"; | ||
const localstorage = new LocalStorage(); | ||
const queue = new GenericQueue(localstorage, 2); | ||
queue.query(/.../); | ||
``` | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67866
73