Skip to main content
Module

x/ramda/internal/_arrayFromIterator.js

:ram: Practical functional Javascript
Very Popular
Go to Latest
File
export default function _arrayFromIterator(iter) { var list = []; var next; while (!(next = iter.next()).done) { list.push(next.value); } return list;}