UNPKG

@interaction/eagle

Version:
12 lines (9 loc) 193 B
function _arrayFromIterator(iter) { const list = []; let next; while (!(next = iter.next()).done) { list.push(next.value); } return list; } module.exports = _arrayFromIterator;