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 3.14.0-beta6 to 3.14.0-beta7

3

lib/renderer/BaseRenderLayer.js

@@ -7,3 +7,2 @@ "use strict";

var BufferLine_1 = require("../core/buffer/BufferLine");
var CharacterJoinerRegistry_1 = require("./CharacterJoinerRegistry");
var BaseRenderLayer = (function () {

@@ -132,3 +131,3 @@ function BaseRenderLayer(_container, id, zIndex, _alpha, _colors) {

BaseRenderLayer.prototype.drawChars = function (terminal, cell, x, y) {
if (cell.isFgRGB() || cell.isBgRGB() || cell instanceof CharacterJoinerRegistry_1.JoinedCellData) {
if (cell.isFgRGB() || cell.isBgRGB()) {
this._drawUncachedChars(terminal, cell, x, y);

@@ -135,0 +134,0 @@ return;

{
"name": "xterm",
"description": "Full xterm terminal, in your browser",
"version": "3.14.0-beta6",
"version": "3.14.0-beta7",
"main": "lib/public/Terminal.js",

@@ -6,0 +6,0 @@ "types": "typings/xterm.d.ts",

@@ -14,3 +14,2 @@ /**

import { CellData, AttributeData, WHITESPACE_CELL_CHAR, WHITESPACE_CELL_CODE } from '../core/buffer/BufferLine';
import { JoinedCellData } from './CharacterJoinerRegistry';

@@ -268,5 +267,5 @@ export abstract class BaseRenderLayer implements IRenderLayer {

// Note: to avoid bad runtime JoinedCellData will be skipped
// in the cache handler (atlasDidDraw == false) itself and
// in the cache handler itself (atlasDidDraw == false) and
// fall through to uncached later down below
if (cell.isFgRGB() || cell.isBgRGB() || cell instanceof JoinedCellData) {
if (cell.isFgRGB() || cell.isBgRGB()) {
this._drawUncachedChars(terminal, cell, x, y);

@@ -273,0 +272,0 @@ return;

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

Sorry, the diff of this file is not supported yet

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