UNPKG

scrabble-solver

Version:

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

11 lines (10 loc) 447 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getWordList = void 0; const types_1 = require("@scrabble-solver/types"); const lib_1 = require("../lib"); const FILE_URL = 'https://raw.githubusercontent.com/MansourM/persian-to-persian-dictionary/main/moein/words.txt'; const getWordList = async () => { return (0, lib_1.getTxtWordList)(FILE_URL, types_1.Locale.FA_IR); }; exports.getWordList = getWordList;