If you continue looping through them, then yes
If you continue looping through them, then yes

.invalid is promised to not exist, right?
Access-Control-Allow-Origin: asdf.invalid.invalidconst ips = new Set();
let cursor = undefined;
while(true) {
const result = await env.KV.list({ cursor });
for(const { name } of result.keys) {
ips.add(await env.KV.get(name));
}
if(result.list_complete) {
break;
}
cursor = result.cursor;
}
console.log(Array.from(ips.values()));