INNER CODE UNIT · TypeScript
isWhiteSquare
josefjadrny/js-chess-engine · src/index.ts:205
const isWhiteSquare = (rank + file) % 2 === 0;
const symbol = pieceToUnicode(piece, isWhiteSquare);
process.stdout.write(symbol);
}
process.stdout.write('\n');
}
process.stdout.write(' ABCDEFGH\n');
}
/**
* Make an AI move (v1 compatible - returns only the move)
*
* @deprecated Use `ai()` instead. This method will be removed in v3.0.0.
* @param level - AI level (1-5, default 3)
* @returns The played move object (e.g., {"E2": "E4"})