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.
33 lines (27 loc) • 835 B
text/typescript
import { request } from '../lib';
import { ParsingResult } from '../types';
export const crawl = (word: string): Promise<string> => {
return request({
protocol: 'https',
hostname: 'sozluk.gov.tr',
path: `/gts?ara=${encodeURIComponent(word)}`,
headers: {
'content-type': 'text/json',
},
});
};
export const parse = (json: string): ParsingResult => {
const response = JSON.parse(json) as [{ anlamlarListe: [{ anlam: string }] }] | { error?: unknown };
if (!Array.isArray(response) || ('error' in response && response.error)) {
return {
definitions: [],
exists: false,
};
}
const [wordInfo] = response;
const definitions = wordInfo.anlamlarListe.map((entry) => entry.anlam.replace('►', '').trim());
return {
definitions,
exists: definitions.length > 0,
};
};