Skip to content

Commit b3399d9

Browse files
committed
Add missing import
1 parent 64f777f commit b3399d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Node/FS/Async.purs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module Node.FS.Async
2525
) where
2626

2727
import Control.Monad.Eff
28+
import Control.Monad.Eff.Unsafe (unsafeInterleaveEff)
2829
import Control.Monad.Eff.Exception
2930
import Data.Date
3031
import Data.Either
@@ -334,4 +335,4 @@ exists :: forall eff. FilePath
334335
-> (Boolean -> Eff eff Unit)
335336
-> Eff (fs :: FS | eff) Unit
336337
exists file cb = mkEff $ \_ -> runFn2
337-
fs.exists file $ \b -> runPure (unsafeInterleaveEff (cb b))
338+
fs.exists file $ \b -> runPure (unsafeInterleaveEff (cb b))

0 commit comments

Comments
 (0)