We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ef4af4 commit 8d55585Copy full SHA for 8d55585
Dockerfile
@@ -1,7 +1,7 @@
1
# Use this image to build the executable
2
FROM golang:1.16-alpine AS compiler
3
4
-RUN apk add --no-cache git ca-certificates make
+RUN apk add --no-cache git ca-certificates make bash
5
6
WORKDIR $GOPATH/src/minify
7
COPY . .
js/util.go
@@ -29,11 +29,7 @@ var (
29
notBytes = []byte("!")
30
questionBytes = []byte("?")
31
equalBytes = []byte("=")
32
- notNotBytes = []byte("!!")
33
- andBytes = []byte("&&")
34
- orBytes = []byte("||")
35
optChainBytes = []byte("?.")
36
- nullishBytes = []byte("??")
37
arrowBytes = []byte("=>")
38
zeroBytes = []byte("0")
39
oneBytes = []byte("1")
0 commit comments