A simple package to remove stop words from text.
npm install cdx-stopword-removerA simple package to remove stop words from text. This package is written in TypeScript but can be used in both TypeScript and JavaScript projects.
You can install the package using npm:
``bash`
npm install cdx-stopword-removeror
yarn add cdx-stopword-removeror
bun install cdx-stopword-remover
`bash
import { removeStopWords } from 'stopword-remover'
const text = "This is a simple example to demonstrate the removal of stop words.";
const result = removeStopWords(text);
console.log(result);
``