Files
glitch_automata_lab/backend/admin/src/caEngineSteps/cellGrid.ts
T
2026-07-06 13:11:48 +02:00

6 lines
148 B
TypeScript

import type { Cells } from '../types.js'
export function emptyCellsLike(cells: Cells): Cells {
return cells.map((row) => row.map(() => false))
}