Socket
Socket
Sign inDemoInstall

observable-fns

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.0 to 0.5.0

4

dist.esm/index.d.ts

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

import { Subscription as SubscriptionClass } from "./observable";
import { Subscription as SubscriptionClass, SubscriptionObserver as SubscriptionObserverClass } from "./observable";
export { default as filter } from "./filter";

@@ -12,2 +12,4 @@ export { default as flatMap } from "./flatMap";

export { default as unsubscribe } from "./unsubscribe";
declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;
export declare type Subscription<T> = SubscriptionClass<T>;
export declare type SubscriptionObserver<T> = Omit<SubscriptionObserverClass<T>, "_subscription">;

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

import { Subscription as SubscriptionClass } from "./observable";
import { Subscription as SubscriptionClass, SubscriptionObserver as SubscriptionObserverClass } from "./observable";
export { default as filter } from "./filter";

@@ -12,2 +12,4 @@ export { default as flatMap } from "./flatMap";

export { default as unsubscribe } from "./unsubscribe";
declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;
export declare type Subscription<T> = SubscriptionClass<T>;
export declare type SubscriptionObserver<T> = Omit<SubscriptionObserverClass<T>, "_subscription">;
{
"name": "observable-fns",
"version": "0.4.0",
"version": "0.5.0",
"description": "Light-weight observable implementation and utils written in TypeScript. Based on zen-observable.",

@@ -5,0 +5,0 @@ "author": "Andy Wermke (https://github.com/andywer)",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc