UNPKG

scrabble-solver

Version:

Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Crossplay, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.

18 lines (9 loc) 428 B
export const COMMA_ARABIC = '،'; export const COMMA_LATIN = ','; export const BLANK = ' '; export const BONUS_CHARACTER = 'BONUS_CHARACTER'; export const BONUS_WORD = 'BONUS_WORD'; export const EMPTY_CELL = ' '; export const NO_BONUS = { characterMultiplier: 1, wordMultiplier: 1 }; export const CONSONANTS = 'bcçćdfgğhjklłmnńñpqrsşśtvwxzźż'.split(''); export const VOWELS = 'aąäeęioóöuüyı'.split('');