New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

xterm

Package Overview
Dependencies
Maintainers
2
Versions
1092
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xterm - npm Package Compare versions

Comparing version

to
5.3.0-beta.3

2

package.json
{
"name": "xterm",
"description": "Full xterm terminal, in your browser",
"version": "5.3.0-beta.2",
"version": "5.3.0-beta.3",
"main": "lib/xterm.js",

@@ -6,0 +6,0 @@ "style": "css/xterm.css",

@@ -65,3 +65,3 @@ /**

if (this.logLevel <= LogLevelEnum.DEBUG) {
this._log(this._optionsService.options.logger?.debug ?? console.log, message, optionalParams);
this._log(this._optionsService.options.logger?.debug.bind(this._optionsService.options.logger) ?? console.log, message, optionalParams);
}

@@ -72,3 +72,3 @@ }

if (this.logLevel <= LogLevelEnum.INFO) {
this._log(this._optionsService.options.logger?.info ?? console.info, message, optionalParams);
this._log(this._optionsService.options.logger?.info.bind(this._optionsService.options.logger) ?? console.info, message, optionalParams);
}

@@ -79,3 +79,3 @@ }

if (this.logLevel <= LogLevelEnum.WARN) {
this._log(this._optionsService.options.logger?.warn ?? console.warn, message, optionalParams);
this._log(this._optionsService.options.logger?.warn.bind(this._optionsService.options.logger) ?? console.warn, message, optionalParams);
}

@@ -86,5 +86,5 @@ }

if (this.logLevel <= LogLevelEnum.ERROR) {
this._log(this._optionsService.options.logger?.error ?? console.error, message, optionalParams);
this._log(this._optionsService.options.logger?.error.bind(this._optionsService.options.logger) ?? console.error, message, optionalParams);
}
}
}

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

Sorry, the diff of this file is not supported yet