We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a657d3 commit 76cafc1Copy full SHA for 76cafc1
README.md
@@ -36,6 +36,8 @@
36
37
chown :: forall eff. FilePath -> Number -> Number -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
38
39
+ exists :: forall eff. FilePath -> (Boolean -> Eff eff Unit) -> Eff (fs :: FS | eff) Unit
40
+
41
link :: forall eff. FilePath -> FilePath -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
42
43
mkdir :: forall eff. FilePath -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
src/Node/FS/Async.purs
@@ -22,6 +22,7 @@ module Node.FS.Async
22
, writeTextFile
23
, appendFile
24
, appendTextFile
25
+ , exists
26
) where
27
28
import Control.Monad.Eff
0 commit comments