Started code review + some fixes (unfinished)
[vchess.git] / client / src / utils / squareId.js
index 6469bc3..58ca086 100644 (file)
@@ -1,13 +1,11 @@
 // Get the identifier of a HTML square from its numeric coordinates o.x,o.y.
-export function getSquareId(o)
-{
+export function getSquareId(o) {
   // NOTE: a separator is required to allow any size of board
-  return  "sq-" + o.x + "-" + o.y;
+  return "sq-" + o.x + "-" + o.y;
 }
 
 // Inverse function
-export function getSquareFromId(id)
-{
-  const idParts = id.split('-');
+export function getSquareFromId(id) {
+  const idParts = id.split("-");
   return [parseInt(idParts[1]), parseInt(idParts[2])];
 }