parent
c00dfa7d9e
commit
62ef9e7ad8
@ -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