We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722186f commit 812550dCopy full SHA for 812550d
src/Node/FS/Async.purs
@@ -46,10 +46,10 @@ foreign import handleCallbackImpl
46
\ if (err) f(left(err))();\
47
\ else f(right(value))();\
48
\ };\
49
- \}" :: forall eff a b. Fn3 (Error -> Either Error a)
50
- (a -> Either Error a)
51
- (Callback eff a)
52
- (JSCallback a)
+ \}" :: forall eff a. Fn3 (Error -> Either Error a)
+ (a -> Either Error a)
+ (Callback eff a)
+ (JSCallback a)
53
54
handleCallback :: forall eff a b. (Callback eff a) -> JSCallback a
55
handleCallback cb = runFn3 handleCallbackImpl Left Right cb
0 commit comments