aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2019-04-24 22:21:28 +0800
committerGitHub <noreply@github.com>2019-04-24 22:21:28 +0800
commitd3b93ec682f948e80c9617421128597a12651f78 (patch)
tree2d4bd83bfe8a308ec3a6f1acb59bb5c74906a79d /lib
parent6fe20dbe33bc78b161489207287c9154d5d32fd4 (diff)
downloadtracifyjs-d3b93ec682f948e80c9617421128597a12651f78.tar.gz
tracifyjs-d3b93ec682f948e80c9617421128597a12651f78.zip
fix corner case in `unsafe` (#3380)
Diffstat (limited to 'lib')
-rw-r--r--lib/compress.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compress.js b/lib/compress.js
index 767f3dcc..758e4595 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -3018,6 +3018,7 @@ merge(Compressor.prototype, {
if (arg === value) return this;
args.push(value);
}
+ if (key == "replace" && typeof args[1] == "function") return this;
try {
return val[key].apply(val, args);
} catch (ex) {
@@ -3139,6 +3140,7 @@ merge(Compressor.prototype, {
} else if (expr instanceof AST_RegExp) {
map = native_fns.RegExp;
} else if (expr.is_string(compressor)) {
+ if (this.property == "replace") return false;
map = native_fns.String;
} else if (!this.may_throw_on_access(compressor)) {
map = native_fns.Object;