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

vega-dataflow

Package Overview
Dependencies
Maintainers
2
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vega-dataflow - npm Package Compare versions

Comparing version 1.2.6 to 1.2.7

2

package.json
{
"name": "vega-dataflow",
"version": "1.2.6",
"version": "1.2.7",
"description": "Vega streaming dataflow graph.",

@@ -5,0 +5,0 @@ "repository": {

@@ -170,2 +170,6 @@ var log = require('vega-logging'),

if (delta.sort) {
ds._data.sort(delta.sort);
}
// if reflowing, add any other tuples not currently in changeset

@@ -172,0 +176,0 @@ if (input.reflow) {

@@ -202,3 +202,3 @@ var dl = require('datalib'),

prototype.connect = function(branch) {
var collector, node, data, signals, i, n, j, m;
var collector, node, data, signals, i, n, j, m, x, y;

@@ -212,3 +212,7 @@ // connect the pipeline

for (j=0, m=data.length; j<m; ++j) {
this.data(data[j]).addListener(collector);
if (!(x=this.data(y=data[j]))) {
throw new Error('Unknown data source ' + dl.str(y));
}
x.addListener(collector);
}

@@ -218,3 +222,7 @@

for (j=0, m=signals.length; j<m; ++j) {
this.signal(signals[j]).addListener(collector);
if (!(x=this.signal(y=signals[j]))) {
throw new Error('Unknown signal ' + dl.str(y));
}
x.addListener(collector);
}

@@ -221,0 +229,0 @@

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

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

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