scrabble-solver
Version:
Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Crossplay, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.
22 lines (21 loc) • 549 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isBoardJson = void 0;
const CellJson_1 = require("./CellJson");
const isBoardJson = (value) => {
if (!Array.isArray(value)) {
return false;
}
for (const row of value) {
if (!Array.isArray(value)) {
return false;
}
for (const cell of row) {
if (!(0, CellJson_1.isCellJson)(cell)) {
return false;
}
}
}
return true;
};
exports.isBoardJson = isBoardJson;