Open
Description
Coming from Zekfad/fetch_client#9
There are new Iterator
global class with Chrome 117+
JS compiler confuses it with DomIterator
(which I believe is NodeIterator
)
Following code throws in Chrome 117+ and works fine on older versions or on Safari/Firefox:
import 'dart:html';
import 'package:fetch_api/fetch_api.dart';
void main() {
final e = Headers().entries();
print(e is! DomIterator); // true
}
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Backlog