swc/crates/swc_bundler/tests/.cache/deno/64a0b34ed6ea49502cedd795909c020dd3fa51f0.ts
2021-11-09 20:42:49 +09:00

12 lines
256 B
TypeScript

// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_arrayFromIterator.js
export default function _arrayFromIterator(iter) {
var list = [];
var next;
while (!(next = iter.next()).done) {
list.push(next.value);
}
return list;
}