linked-list-typed 1.19.7 → 1.20.0

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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,7 +14,12 @@ npm i linked-list-typed
14
14
  ```bash
15
15
  yarn add linked-list-typed
16
16
  ```
17
+ ### methods
18
+ Singly Linked List
19
+ ![](https://github.com/zrwusa/assets/blob/master/images/data-structure-typed/methods-8bit/singly-linked-list.png?raw=true)
17
20
 
21
+ Doubly Linked List
22
+ ![](https://github.com/zrwusa/assets/blob/master/images/data-structure-typed/methods-8bit/doubly-linked-list.png?raw=true)
18
23
  ### snippet
19
24
  #### TS
20
25
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linked-list-typed",
3
- "version": "1.19.7",
3
+ "version": "1.20.0",
4
4
  "description": "Linked List, Doubly Linked List, Singly Linked List. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -57,7 +57,7 @@
57
57
  "typescript": "^4.9.5"
58
58
  },
59
59
  "dependencies": {
60
- "data-structure-typed": "^1.19.7",
60
+ "data-structure-typed": "^1.20.0",
61
61
  "zod": "^3.22.2"
62
62
  }
63
63
  }