Sign In

terser

Package Overview
Dependencies
Maintainers
1
Versions
207
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terser - npm Package Compare versions

Comparing version
5.49.1
to
5.49.2
+4
-0
CHANGELOG.md
# Changelog
## v5.49.2
- Fixed a crash related to dynamic `import` expressions
## v5.49.1

@@ -4,0 +8,0 @@

@@ -282,3 +282,7 @@ import {

// `import.` + phase + `()` + arg overhead
return 9 + this.phase.length + list_overhead(this.args);
if (this.phase) {
return 9 + this.phase.length + list_overhead(this.args);
} else {
return 8 + list_overhead(this.args);
}
};

@@ -285,0 +289,0 @@

+1
-1

@@ -7,3 +7,3 @@ {

"license": "BSD-2-Clause",
"version": "5.49.1",
"version": "5.49.2",
"engines": {

@@ -10,0 +10,0 @@ "node": ">=10"

Sorry, the diff of this file is too big to display