UNPKG

eris-keys

Version:

a JavaScript client library for eris-keys

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