bitview: reorg part 3

This commit is contained in:
nym21
2025-09-24 00:35:32 +02:00
parent d45686128e
commit 2279aa8f18
18 changed files with 480 additions and 445 deletions

View File

@@ -15,6 +15,6 @@ export function range(start, end) {
* @template T
* @param {T[]} array
*/
export function random(array) {
export function randomFromArray(array) {
return array[Math.floor(Math.random() * array.length)];
}