18 lines
231 B
JavaScript
18 lines
231 B
JavaScript
|
|
||
|
|
||
|
import * as Curry from "./curry.js";
|
||
|
|
||
|
function then_(arg1, obj) {
|
||
|
return obj.then(Curry.__1(arg1));
|
||
|
}
|
||
|
|
||
|
function $$catch(arg1, obj) {
|
||
|
return obj.catch(Curry.__1(arg1));
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
then_ ,
|
||
|
$$catch ,
|
||
|
}
|
||
|
/* No side effect */
|