UNPKG

@orama/stopwords

Version:
54 lines (46 loc) 854 B
# Orama Stop-words This package provides support for stop-words removal in 30 languages: - Arabic - Armenian - Bulgarian - Chinese (Mandarin - stemmer not supported) - Danish - Dutch - English - Finnish - French - German - Greek - Hindi - Hungarian - Indonesian - Irish - Italian - Nepali - Norwegian - Portuguese - Romanian - Russian - Sanskrit - Serbian - Slovenian - Spanish - Swedish - Tamil - Turkish - Ukrainian ```js import { create } from '@orama/orama' import { stopwords as italianStopwords } from '@orama/stopwords/italian' const db = create({ schema: { components: { tokenizer: { stopwords: italianStopwords } } }) ``` Read more in the official docs: [https://docs.orama.com/docs/orama-js/text-analysis/stop-words](https://docs.orama.com/docs/orama-js/text-analysis/stop-words). # License [Apache 2.0](/LICENSE.md)