UNPKG

fentastic

Version:

Validate and parse Forsyth-Edwards Notation (FEN) used to describe a chess game board position.

3 lines (2 loc) 173 B
export const tokenIs = (pattern) => token => pattern.test(token.value); export const createTokens = (fen = '') => (fen.split('').map((value, index) => ({ value, index })));