quickmatch-js 0.2.1 → 0.3.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 +4 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,5 +18,9 @@ A high-performance string matching library optimized for interactive search expe
18
18
  ## Installation
19
19
 
20
20
  ```bash
21
+ # rust
21
22
  cargo add quickmatch
23
+
24
+ # js
25
+ npm install quickmatch-js
22
26
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickmatch-js",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Lightning-fast fuzzy string matching",
5
5
  "type": "module",
6
6
  "main": "src/index.js",