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