Implemented multi-move possibility in a moves list => better support for multi-moves...
[vchess.git] / client / src / utils / notation.js
1 // Take into account that the move may be a multi-move
2 export function getFullNotation(move) {
3 if (Array.isArray(move)) {
4 let notation = "";
5 for (let i=0; i<move.length; i++)
6 notation += move[i].notation + ",";
7 // Remove last comma:
8 return notation.slice(0,-1);
9 }
10 // Simple (usual) case
11 return move.notation;
12 }