Files
glitch_automata_lab/backend/admin/src/caEngineSteps/cellGrid.ts
T

6 lines
148 B
TypeScript
Raw Normal View History

2026-07-06 13:11:48 +02:00
import type { Cells } from '../types.js'
export function emptyCellsLike(cells: Cells): Cells {
return cells.map((row) => row.map(() => false))
}