Merge pull request #406 from HaveAGitGat/filter_by_file_property_amend
Add exactMatch option to property filtersmake-only-subtitle-default
commit
efd12b23cb
@ -0,0 +1,23 @@
|
|||||||
|
const strHasValue = (inputsArr, value, exactMatch) => {
|
||||||
|
let contains = false;
|
||||||
|
|
||||||
|
for (let j = 0; j < inputsArr.length; j += 1) {
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
(exactMatch && inputsArr[j] === String(value))
|
||||||
|
|| (!exactMatch && String(value).includes(inputsArr[j]))) {
|
||||||
|
contains = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return contains;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
strHasValue,
|
||||||
|
};
|
||||||
Loading…
Reference in new issue