1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-19 22:18:03 +00:00

Display host stats

This commit is contained in:
2023-06-07 21:52:43 +02:00
parent be7643bd31
commit be4e3e778e
11 changed files with 219 additions and 12 deletions

View File

@ -64,10 +64,8 @@ export function deepClone(obj) {
export function pathsAreEqual(x, y) {
const lengthOfLongest = (x.length >= y.length) ? x.length : y.length;
console.log(x, y)
for (let i = 0; i < lengthOfLongest; i++) {
console.log(x[i], y[i])
if (x[i] !== y[i]) {
return false;
}