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 64f777f commit b3399d9Copy full SHA for b3399d9
src/Node/FS/Async.purs
@@ -25,6 +25,7 @@ module Node.FS.Async
25
) where
26
27
import Control.Monad.Eff
28
+import Control.Monad.Eff.Unsafe (unsafeInterleaveEff)
29
import Control.Monad.Eff.Exception
30
import Data.Date
31
import Data.Either
@@ -334,4 +335,4 @@ exists :: forall eff. FilePath
334
335
-> (Boolean -> Eff eff Unit)
336
-> Eff (fs :: FS | eff) Unit
337
exists file cb = mkEff $ \_ -> runFn2
- fs.exists file $ \b -> runPure (unsafeInterleaveEff (cb b))
338
+ fs.exists file $ \b -> runPure (unsafeInterleaveEff (cb b))
0 commit comments