forked from waja/action-debian-package
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
export default function _arrayFromIterator(iter) {
|
|
var list = [];
|
|
var next;
|
|
|
|
while (!(next = iter.next()).done) {
|
|
list.push(next.value);
|
|
}
|
|
|
|
return list;
|
|
} |