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

@tanbo/stream

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanbo/stream - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

operators/tap.d.ts

@@ -6,2 +6,2 @@ import { Operator } from '../core/_api';

*/
export declare function tap<T>(callback: () => void): Operator<T, T>;
export declare function tap<T>(callback: (value: T) => void): Operator<T, T>;

@@ -11,3 +11,3 @@ import { Observable } from '../core/_api';

next(v) {
callback();
callback(v);
subscriber.next(v);

@@ -14,0 +14,0 @@ },

{
"name": "@tanbo/stream",
"version": "0.0.4",
"version": "0.0.5",
"description": "A data stream lib",

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

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