4 lines
88 B
Plaintext
4 lines
88 B
Plaintext
export const check = (arr: any[], value: any) => {
|
|
return arr.indexOf(value) > -1;
|
|
};
|