Keyword matching algorithm
- @Sodex234 – Algorithm
- @aabbccsmith – Types and publishing
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'