bpms_site/.svn/pristine/1a/1a3f60b96c11ae869260ece38f72ca4330b4850f.svn-base
2025-11-02 16:38:49 +03:30

10 lines
199 B
Plaintext

export function consumeIterator(iter) {
while(true){
const { value, done } = iter.next();
if (done) {
return value;
}
}
}
//# sourceMappingURL=util.js.map