if($humans.hasOwnProperty('last_seen')) {
return $humans.last_seen.time < (time - $hours)
}
const $humans = await data.response.items;
if($humans.some(entry => entry.hasOwnProperty('last_seen'))) {
// Всё еще массив, так что надо еще найти тот элемент, в котором есть этот ключ
} else {
// Всё еще массив
}
const $humans = await data.response.items;
const $human = $humans.find(entry => entry.hasOwnProperty('last_seen'));
if($human !== undefined) {
// Первый элемент из массива с ключём last_seen
} else {
// Какой-то код
}