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.
2 parents 763f7c9 + de2700d commit 6ce527aCopy full SHA for 6ce527a
src/Node/Encoding.purs
@@ -12,6 +12,7 @@ data Encoding
12
| UTF16LE
13
| UCS2
14
| Base64
15
+ | Latin1
16
| Binary
17
| Hex
18
@@ -21,6 +22,7 @@ instance showEncoding :: Show Encoding where
21
22
show UTF16LE = "UTF16LE"
23
show UCS2 = "UCS2"
24
show Base64 = "Base64"
25
+ show Latin1 = "Latin1"
26
show Binary = "Binary"
27
show Hex = "Hex"
28
@@ -32,6 +34,7 @@ encodingToNode UTF8 = "utf8"
32
34
encodingToNode UTF16LE = "utf16le"
33
35
encodingToNode UCS2 = "ucs2"
36
encodingToNode Base64 = "base64"
37
+encodingToNode Latin1 = "latin1"
38
encodingToNode Binary = "binary"
39
encodingToNode Hex = "hex"
40
0 commit comments