Socket
Socket
Sign inDemoInstall

steampipes

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

steampipes - npm Package Compare versions

Comparing version 6.0.0 to 6.1.0

5

lib/experiments/tests/tees.test.js

@@ -1,2 +0,1 @@

// Generated by CoffeeScript 2.5.1
(function() {

@@ -40,3 +39,3 @@ //###########################################################################################################

//...........................................................................................................
SP = require('../..');
SP = require('../../..');

@@ -219,3 +218,1 @@ ({$, $async} = SP);

}).call(this);
//# sourceMappingURL=tees.test.js.map

@@ -340,2 +340,20 @@ (function() {

//-----------------------------------------------------------------------------------------------------------
this.$tee = function(bystream) {
var last, pipeline, source;
source = this.new_push_source();
last = Symbol('last');
pipeline = [];
pipeline.push(source);
pipeline.push(bystream);
this.pull(...pipeline);
return $({last}, (d, send) => {
if (d === last) {
return source.end();
}
source.send(d);
return send(d);
});
};
}).call(this);

3

lib/tests/modifiers.test.js

@@ -0,1 +1,2 @@

// Generated by CoffeeScript 2.5.1
(function() {

@@ -251,1 +252,3 @@ 'use strict';

}).call(this);
//# sourceMappingURL=modifiers.test.js.map
{
"name": "steampipes",
"version": "6.0.0",
"version": "6.1.0",
"description": "Fast, simple data pipelines",

@@ -5,0 +5,0 @@ "main": "lib/main.js",

@@ -304,3 +304,6 @@

using modifiers instead (`$ { once: [ 'first', 'last', ], }, transform (d, send ) ->`) to avoid API bloat
* [ ] implement tees which are like branching tracks that lead to their own sinks; there should also
be parallel tracks that are rejoined later on
### Future: JS Pipeline Operator

@@ -307,0 +310,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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