nano-binary-search 1.0.2 → 1.0.3
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 +4 -3
- package/index.js +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -144,6 +144,7 @@ This project is licensed under the BSD-3-Clause license.
|
|
|
144
144
|
|
|
145
145
|
## Release history
|
|
146
146
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
147
|
+
* 1.0.3 *Added a reference to the TS types*
|
|
148
|
+
* 1.0.2 *Improved docs*
|
|
149
|
+
* 1.0.1 *Added TS typings*
|
|
150
|
+
* 1.0.0 *Initial release*
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nano-binary-search",
|
|
3
3
|
"description": "Binary search for JavaScript done right.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"tape-six": "^0.9.6",
|
|
48
|
-
"typescript": "^5.
|
|
48
|
+
"typescript": "^5.6.2"
|
|
49
49
|
}
|
|
50
50
|
}
|