1 // Get the identifier of a HTML square from its numeric coordinates o.x,o.y.
2 export function getSquareId(o
)
4 // NOTE: a separator is required to allow any size of board
5 return "sq-" + o
.x
+ "-" + o
.y
;
9 export function getSquareFromId(id
)
11 const idParts
= id
.split('-');
12 return [parseInt(idParts
[1]), parseInt(idParts
[2])];