selectedAS_info = {
let mtype = (set_numbers_type === "ASNs") ? "asn" : "probe";
if (peer !== "") {
const response = await fetch("https://ai4netmon.csd.auth.gr/api/"+mtype+"/"+peer).then((response) => response.json());
let info_list = [];
for (const key in response) {
info_list.push(Object({'Property': key, 'Value': response[key]}))
}
return info_list;
}
}