mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
Move server directory outside of frontend src
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
export const validateArrayEqual = (array1: any[], array2: any[]) => {
|
||||
if (array1.length === array2.length) {
|
||||
return array1.every((element) => {
|
||||
if (array2.includes(element)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
Reference in New Issue
Block a user