bitburner-src/utils/helpers/compareArrays.ts

30 lines
691 B
TypeScript
Raw Normal View History

/**
* Does a shallow compare of two arrays to determine if they are equal.
* @param a1 The first array
* @param a2 The second array
*/
2021-05-01 09:17:31 +02:00
export function compareArrays<T>(a1: T[], a2: T[]): boolean {
2021-09-05 01:09:30 +02:00
if (a1.length !== a2.length) {
return false;
}
2021-09-05 01:09:30 +02:00
for (let i = 0; i < a1.length; ++i) {
if (Array.isArray(a1[i])) {
// If the other element is not an array, then these cannot be equal
if (!Array.isArray(a2[i])) {
return false;
}
const elem1 = a1[i] as any;
const elem2 = a2[i] as any;
2021-09-05 01:09:30 +02:00
if (!compareArrays(elem1, elem2)) {
return false;
}
} else if (a1[i] !== a2[i]) {
return false;
}
2021-09-05 01:09:30 +02:00
}
2021-09-05 01:09:30 +02:00
return true;
}