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

flyd

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flyd - npm Package Versions

234

0.2.8

Diff

paldepind
published 0.2.7 •

paldepind
published 0.2.6 •

paldepind
published 0.2.5 •

paldepind
published 0.2.4 •

paldepind
published 0.2.3 •

paldepind
published 0.2.2 •

paldepind
published 0.2.1 •

paldepind
published 0.2.0 •

Changelog

Source

v.0.2.0

  • Fixed bug in flyd/module/scanmerge
  • Removed dependent stream syntax flyd.stream([streams], combinFn) in favor of the function combine. flyd.stream is now only used for creating top level streams.
  • Added flyd.combine
flyd.combine((depA, depB, ..., depN, self, changed) => *, [depA, depB, ..., depN]);

self is the combined stream and changed is an array of the streams that have changed.

To update replace

var a = flyd.stream();
var b = flyd.stream();
var sum = flyd.stream([a, b], function() {
  return a() + b();
}

with

var b = flyd.stream(0);
var a = flyd.stream(0);
var sum = flyd.combine(function(a, b) {
  return a + b;
}, [a, b]);
paldepind
published 0.1.17 •

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