An iterator that yields nothing. As in, it's first call to next() returns { done: true, value: undefined }.
next()
{ done: true, value: undefined }
An iterator that yields nothing. As in, it's first call to
next()
returns{ done: true, value: undefined }
.