This is a repository used to store the graphics of the Game of Life.
npm i life-game-shape
import {getShapeNameList, parseShape, findShapeWithName, getShapeList} from 'life-game-shape';
const names = getShapeNameList();
const shapes = getShapeList();
const shape = findShapeWithName(names[10]);
const points = parseShape({map: shape.map});
console.log(
names,
shapes,
shape,
points,
);