UNPKG

cloudworker-proxy

Version:
8 lines 166 B
export default function _arrayFromIterator(iter) { var list = []; var next; while (!(next = iter.next()).done) { list.push(next.value); } return list; }