1.0.4 • Published 4 years ago

blue-keyword v1.0.4

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
4 years ago

keyword

Keyword matching algorithm

Thanks to

Usage

import matchKeyword from 'blue-keyword';

const products = ['Tagful Tee', 'Rectangle Logo', 'Crewneck'];
const product = products.find(product => matchKeyword(product, '+Tagful, -Tagless'));

console.log(product); // => 'Tagful Tee'