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 c4a9bb8 commit dd79e58Copy full SHA for dd79e58
src/lime/_internal/format/LZMA.hx
@@ -27,7 +27,7 @@ class LZMA
27
#end
28
#elseif js
29
var data = untyped #if haxe4 js.Syntax.code #else __js__ #end ("LZMA.compress")(new UInt8Array(bytes.getData()), 5);
30
- if (data is String)
+ if ((data is String))
31
{
32
return Bytes.ofString(data);
33
}
@@ -60,7 +60,7 @@ class LZMA
60
61
62
var data = untyped #if haxe4 js.Syntax.code #else __js__ #end ("LZMA.decompress")(new UInt8Array(bytes.getData()));
63
64
65
66
0 commit comments