UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

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