Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cazala/1cdb239b5bd045dcb789349269f8c40e to your computer and use it in GitHub Desktop.
Save cazala/1cdb239b5bd045dcb789349269f8c40e to your computer and use it in GitHub Desktop.
const squares = store.getState().squares
const squaresWithPiecesFromPlayerInCheck = squares.filter(
square =>
square.pieceId !== '_' &&
(isWhite ? square.color === 'piece_black' : 'piece_white')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment