UNPKG

@interaction/eagle

Version:
10 lines (8 loc) 170 B
export default function _arrayFromIterator(iter) { const list = []; let next; while (!(next = iter.next()).done) { list.push(next.value); } return list; }