Skip to content

Commit c222ea4

Browse files
committed
fix: bettering readme and keywords
1 parent a7d180c commit c222ea4

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

libs/js-tuple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A high-performance JavaScript library for managed nested maps, nested set and cr
55
## Why js-tuple?
66

77
In JavaScript, arrays are compared by reference, not by value. This means `[1, 2, 3] !== [1, 2, 3]`, which makes arrays unsuitable as Map keys when you want value-based equality. **js-tuple** solves this by providing cached, immutable arrays where identical element sequences always return the same reference.
8-
It also offers the classes **NestMap** ad **NestSet**, which deals with array keys internally giving the same tuple experience but without the need of calling tuple every time.
8+
It also offers the classes **NestMap** and **NestSet**, which deals with array keys internally giving the same tuple experience but without the need of calling tuple every time.
99

1010
## Installation
1111

libs/js-tuple/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@
4848
"nested set",
4949
"performance",
5050
"memoization",
51-
"deep key"
51+
"deep key",
52+
"dfs",
53+
"bfs",
54+
"data structure",
55+
"tree",
56+
"graph"
5257
],
5358
"author": "Farenheith",
5459
"license": "MIT",

0 commit comments

Comments
 (0)