import { request } from '../lib'; import type { ParsingResult } from '../types'; export const crawl = (word: string): Promise => { 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, }; };