diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-03-02 09:33:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-02 17:33:28 +0800 |
commit | 23b51287aa31630c5454fecb5991fd18f7528366 (patch) | |
tree | 7d03497d5b40bc5274dcdbd71cf62d4647e7d0e2 /lib | |
parent | 74dee5c445b1424866ef78ac9b06c507ef92959c (diff) | |
download | tracifyjs-23b51287aa31630c5454fecb5991fd18f7528366.tar.gz tracifyjs-23b51287aa31630c5454fecb5991fd18f7528366.zip |
fix corner case in `evaluate` (#4716)
fixes #4715
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compress.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compress.js b/lib/compress.js index 393e3197..ad4c6809 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -3523,6 +3523,7 @@ merge(Compressor.prototype, { case "*": case "/": case "%": + case "**": return true; default: return false; |