D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
aramrprl
/
www
/
wp-content
/
plugins
/
complianz-gdpr
/
settings
/
src
/
utils
/
Filename :
lib.js
back
Copy
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; }