/** * @since 2.0.0 */ export function tailRec(a, f) { var v = f(a); while (v._tag === 'Left') { v = f(v.left); } return v.right; }