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 ef07c9d commit 4efcaa3Copy full SHA for 4efcaa3
src/Node/FS.purs
@@ -26,17 +26,17 @@ data FileFlags = R | R_PLUS | RS | RS_PLUS
26
27
fileFlagsToNode :: FileFlags -> String
28
fileFlagsToNode ff = case ff of
29
- R -> "r"
30
- R_PLUS -> "r+"
31
- RS -> "rs"
+ R -> "r"
+ R_PLUS -> "r+"
+ RS -> "rs"
32
RS_PLUS -> "rs+"
33
- W -> "w"
34
- WX -> "wx"
35
- W_PLUS -> "w+"
+ W -> "w"
+ WX -> "wx"
+ W_PLUS -> "w+"
36
WX_PLUS -> "wx+"
37
- A -> "a"
38
- AX -> "ax"
39
- A_PLUS -> "a+"
+ A -> "a"
+ AX -> "ax"
+ A_PLUS -> "a+"
40
AX_PLUS -> "ax+"
41
42
type FileMode = Int
0 commit comments