Socket
Socket
Sign inDemoInstall

terser

Package Overview
Dependencies
Maintainers
1
Versions
180
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 3.9.1 to 3.9.2

6

lib/scope.js

@@ -304,4 +304,4 @@ /***********************************************************************

// pass 3: fix up any scoping issue with IE8
if (options.ie8) {
// pass 3: work around IE8 and Safari catch scope bugs
if (options.ie8 || options.safari10) {
self.walk(new TreeWalker(function(node, descend) {

@@ -564,3 +564,3 @@ if (node instanceof AST_SymbolCatch) {

}
if (!options.ie8 && node instanceof AST_SymbolCatch) {
if (!(options.ie8 || options.safari10) && node instanceof AST_SymbolCatch) {
to_mangle.push(node.definition());

@@ -567,0 +567,0 @@ return;

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

"license": "BSD-2-Clause",
"version": "3.9.1",
"version": "3.9.2",
"engines": {

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

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc