File "lib.js"
Full path: /home/satkhirabarta/public_html/wp-content/plugins/complianz-gdpr/settings/src/utils/lib.js
File
size: 198 B (198 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
export const in_array = (needle, haystack) => {
let length = haystack.length;
for(let i = 0; i < length; i++) {
if( haystack[i] == needle ) return true;
}
return false;
}