Comparing version 1.5.1 to 1.5.2
{ | ||
"name": "quoridor", | ||
"version": "1.5.1", | ||
"version": "1.5.2", | ||
"description": "A JavaScipt Quoridor library for move validation etc.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -147,3 +147,3 @@ # quoridor.js | ||
const game = createGameFromMoves(['e2', 'e8', 'd7v']); | ||
const gameWithLastMoveUndone = undo(game); | ||
const gameWithUndoneMove = undo(game); | ||
@@ -176,3 +176,3 @@ console.log(getUnicodeRepresentation(game)); | ||
console.log(getUnicodeRepresentation(gameWithLastMoveUndone)); | ||
console.log(getUnicodeRepresentation(gameWithUndoneMove)); | ||
@@ -214,3 +214,3 @@ // βββββ«ββββ«ββββ«ββββ«ββββ«ββββ«ββββ«ββββ«ββββ«ββββ«ββββ | ||
const gameWithUndoneMove = undo(game); | ||
const gameWithUndoneMoveRedone = redo(gameWithLastMoveUndone); | ||
const gameWithUndoneMoveRedone = redo(gameWithUndoneMove); | ||
@@ -217,0 +217,0 @@ console.log(getUnicodeRepresentation(game)); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
106210