@thi.ng/arrays 2.5.6 → 2.5.7
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/CHANGELOG.md +1 -1
- package/README.md +13 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@ This project is part of the
|
|
|
13
13
|
- [Status](#status)
|
|
14
14
|
- [Installation](#installation)
|
|
15
15
|
- [Dependencies](#dependencies)
|
|
16
|
+
- [Usage examples](#usage-examples)
|
|
16
17
|
- [API](#api)
|
|
17
18
|
- [Binary search result predicates](#binary-search-result-predicates)
|
|
18
19
|
- [Authors](#authors)
|
|
@@ -59,6 +60,18 @@ Package sizes (brotli'd, pre-treeshake): ESM: 2.61 KB
|
|
|
59
60
|
- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/develop/packages/errors)
|
|
60
61
|
- [@thi.ng/random](https://github.com/thi-ng/umbrella/tree/develop/packages/random)
|
|
61
62
|
|
|
63
|
+
## Usage examples
|
|
64
|
+
|
|
65
|
+
Several demos in this repo's
|
|
66
|
+
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
67
|
+
directory are using this package.
|
|
68
|
+
|
|
69
|
+
A selection:
|
|
70
|
+
|
|
71
|
+
| Screenshot | Description | Live demo | Source |
|
|
72
|
+
|:------------------------------------------------------------------------------------------------------------------|:---------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------|
|
|
73
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/kmeans-viz.jpg" width="240"/> | k-means clustering visualization | [Demo](https://demo.thi.ng/umbrella/kmeans-viz/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/kmeans-viz) |
|
|
74
|
+
|
|
62
75
|
## API
|
|
63
76
|
|
|
64
77
|
[Generated API docs](https://docs.thi.ng/umbrella/arrays/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/arrays",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.7",
|
|
4
4
|
"description": "Array / Arraylike utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -156,5 +156,5 @@
|
|
|
156
156
|
"thi.ng": {
|
|
157
157
|
"year": 2018
|
|
158
158
|
},
|
|
159
|
-
"gitHead": "
|
|
159
|
+
"gitHead": "8342900eedc77bb09edb8c544804578b71f8acc6\n"
|
|
160
160
|
}
|