UNPKG

@zkochan/pnpm

Version:

Fast, disk space efficient package manager

9 lines 188 B
function _arrayFromIterator(iter) { var list = []; var next; while (!(next = iter.next()).done) { list.push(next.value); } return list; } module.exports = _arrayFromIterator;