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