@technoeren/word-list
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

word-list

  • Lists words in languages. Currently there is only Turkish and English.

Installation

With npm
npm i @technoeren13/word-list

With yarn
yarn add @technoeren13/word-list

Usage

import * as searchWord from "word-list";

const wordList = searchWord.wordListArray("tr" /* or en */);
// Returns Array

const result = searchWord.searchWord("kebap", "tr" /* or en */);
// Returns Array

const result = searchWord.startWith("kebap", "tr" /* or en */);
// Returns Array

const result = searchWord.searchWithLength(4, "tr" /* or en */);
// Returns Array

const result = searchWord.isWordExist("kebap", "tr" /* or en */);
// Returns Boolean

Information

Languages: Turkish, English

  • English words are from here (274926 words/perhaps)
  • Turkish words are from here (63840 words/perhaps)

Package Sidebar

Install

npm i @technoeren/word-list

Weekly Downloads

5

Version

0.0.2

License

MIT

Unpacked Size

3.52 MB

Total Files

8

Last publish

Collaborators

  • technoeren