I have an object 'res' and it holds a field:
res.headers=new object();
im using this field as a map which holds key and value meaning:
res.headers['key']='value';
is there any way to get the content of this map by iterating it without knowing the key?
thank you!