Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

xterm-addon-webgl

Package Overview
Dependencies
Maintainers
1
Versions
345
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xterm-addon-webgl - npm Package Compare versions

Comparing version 0.14.0-beta.48 to 0.14.0-beta.49

2

package.json
{
"name": "xterm-addon-webgl",
"version": "0.14.0-beta.48",
"version": "0.14.0-beta.49",
"author": {

@@ -5,0 +5,0 @@ "name": "The xterm.js authors",

@@ -354,3 +354,3 @@ /**

let row: number;
let line: IBufferLine;
let line: IBufferLine | undefined;
let joinedRanges: [number, number][];

@@ -368,3 +368,6 @@ let isJoined: boolean;

row = y + terminal.buffer.ydisp;
line = terminal.buffer.lines.get(row)!;
line = terminal.buffer.lines.get(row);
if (!line) {
break;
}
this._model.lineLengths[y] = 0;

@@ -371,0 +374,0 @@ joinedRanges = this._characterJoinerService.getJoinedCharacters(row);

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