blob: 8e2027ef1e5bc60ca7ca1f0ca26110206544ade6 [file] [log] [blame]
function _arrayFromIterator(iter) {
var list = [];
var next;
while (!(next = iter.next()).done) {
list.push(next.value);
}
return list;
}
module.exports = _arrayFromIterator;