Current path: home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/settings/src/utils/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/complianz-gdpr/settings/src
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;
}