A collection of Slovenian words and phrases.
This repository contains a comprehensive list of Slovenian words in multiple formats:
slovenske_besede.txt- Plain text file with one word per lineslovenske_besede.js- JavaScript array of wordsslovenske_besede.ts- TypeScript version with type definitions and utility functions
The words are stored in a simple text file format, with one word per line. You can use this file as a reference or integrate it into your applications.
import { slovenskeBesede } from './slovenske_besede.js';
// Use the array of words
console.log(slovenskeBesede[0]); // First wordimport { slovenskeBesede, slovenskeBesedeUtils } from './slovenske_besede';
// Use the array of words
console.log(slovenskeBesede[0]); // First word
// Use utility functions
const exists = slovenskeBesedeUtils.exists('beseda');
const wordsWithPrefix = slovenskeBesedeUtils.findByPrefix('bes');
const randomWord = slovenskeBesedeUtils.getRandomWord();This project is licensed under the MIT License.