js-match-words
v7.0.10
Published
Give it a piece of text and a search query, and it splits it into chunks separating matches from non-matches, allowing you to highlight the matches, visually or otherwise, in your app.
Downloads
9
Maintainers
Readme
js-match-words
Give it a piece of text and a search query, and it splits it into chunks separating matches from non-matches, allowing you to highlight the matches, visually or otherwise, in your app.
install
npm i js-match-wordsor
yarn add js-match-wordsor
pnpm add js-match-wordsusage
import { matchWords } from 'js-match-words';
matchWords({
source: ' abc123aa1cbb2cbb.',
searchWords: ['a', 'b']
});