import { includes } from "./includes";
export function removeIncludes(texts, excludes) {
return !texts || !texts.length || !excludes || !excludes.length ? texts : texts.filter(function (text) {
return !excludes.some(function (exclude) {
return includes(text, exclude);
});
});
}