blob: f57c59507e9328ca803688a710621de8f4ad1e75 [file] [log] [blame]
export default function _arrayFromIterator(iter) {
var list = [];
var next;
while (!(next = iter.next()).done) {
list.push(next.value);
}
return list;
}