bs-fetch
Version:
Fetch bindings for BuckleScript
29 lines (24 loc) • 459 B
JavaScript
;
var Next = { };
function forEach(f, t) {
while(true) {
var item = t.next();
var match = item.done;
var match$1 = item.value;
if (match !== undefined && match) {
if (!(match$1 == null)) {
return f(match$1);
} else {
return ;
}
}
if (match$1 == null) {
continue ;
}
f(match$1);
continue ;
};
}
exports.Next = Next;
exports.forEach = forEach;
/* No side effect */