We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9da8b9 commit 85cdd50Copy full SHA for 85cdd50
src/Node/FS/Stats.purs
@@ -15,7 +15,7 @@ module Node.FS.Stats
15
16
import Prelude
17
import Data.DateTime (DateTime)
18
-import Data.Function.Uncurried (Fn2, Fn0, runFn2)
+import Data.Function.Uncurried (Fn2, runFn2)
19
import Data.JSDate (JSDate, toDateTime)
20
import Data.Maybe (fromJust)
21
import Partial.Unsafe (unsafePartial)
@@ -32,12 +32,6 @@ type StatsObj =
32
, atime :: JSDate
33
, mtime :: JSDate
34
, ctime :: JSDate
35
- , isFile :: Fn0 Boolean
36
- , isDirectory :: Fn0 Boolean
37
- , isBlockDevice :: Fn0 Boolean
38
- , isCharacterDevice :: Fn0 Boolean
39
- , isFIFO :: Fn0 Boolean
40
- , isSocket :: Fn0 Boolean
41
}
42
43
-- | Stats wrapper to provide a usable interface to the underlying properties and methods.
0 commit comments