-
-
Notifications
You must be signed in to change notification settings - Fork 486
Open
Labels
bugSomething isn't workingSomething isn't working
Description
% boa
>> [...new Headers([['x','y']])]
Uncaught: TypeError: value with type `object` is not iterable (native at core/engine/src/builtins/iterable/mod.rs:307:13)
at <main> (unknown at :?:?)
>> new Map(new Headers([['x','y']]))
Uncaught: TypeError: value with type `object` is not iterable (native at core/engine/src/builtins/iterable/mod.rs:307:13)
at <main> (unknown at :1:1)% node
> [...new Headers([['x','y']])]
[ [ 'x', 'y' ] ]
> new Map(new Headers([['x','y']]))
Map(1) { 'x' => 'y' }Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working