Socket
Socket
Sign inDemoInstall

rxjs

Package Overview
Dependencies
1
Maintainers
2
Versions
165
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.6.6 to 6.6.7

9

_esm2015/internal/innerSubscribe.js

@@ -69,4 +69,11 @@ import { Subscriber } from './Subscriber';

}
return subscribeTo(result)(innerSubscriber);
let subscription;
try {
subscription = subscribeTo(result)(innerSubscriber);
}
catch (error) {
innerSubscriber.error(error);
}
return subscription;
}
//# sourceMappingURL=innerSubscribe.js.map

@@ -91,4 +91,11 @@ /** PURE_IMPORTS_START tslib,_Subscriber,_Observable,_util_subscribeTo PURE_IMPORTS_END */

}
return subscribeTo(result)(innerSubscriber);
var subscription;
try {
subscription = subscribeTo(result)(innerSubscriber);
}
catch (error) {
innerSubscriber.error(error);
}
return subscription;
}
//# sourceMappingURL=innerSubscribe.js.map

@@ -104,5 +104,12 @@ "use strict";

}
return subscribeTo_1.subscribeTo(result)(innerSubscriber);
var subscription;
try {
subscription = subscribeTo_1.subscribeTo(result)(innerSubscriber);
}
catch (error) {
innerSubscriber.error(error);
}
return subscription;
}
exports.innerSubscribe = innerSubscribe;
//# sourceMappingURL=innerSubscribe.js.map

6

internal/symbol/observable.d.ts

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

/** Symbol.observable addition */
declare global {
interface SymbolConstructor {
readonly observable: symbol;
}
}
/** Symbol.observable or a string "@@observable". Used for interop */
export declare const observable: string | symbol;
import { Observable } from './Observable';
import { Subscription } from './Subscription';
/**
* Note: This will add Symbol.observable globally for all TypeScript users,
* however, we are no longer polyfilling Symbol.observable
*/
declare global {
interface SymbolConstructor {
readonly observable: symbol;
}
}
/** OPERATOR INTERFACES */

@@ -4,0 +13,0 @@ export interface UnaryFunction<T, R> {

{
"name": "rxjs",
"version": "6.6.6",
"version": "6.6.7",
"description": "Reactive Extensions for modern JavaScript",

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

@@ -113,3 +113,9 @@ /** @prettier */

}
return subscribeTo(result)(innerSubscriber) as Subscription;
let subscription: Subscription;
try {
subscription = subscribeTo(result)(innerSubscriber) as Subscription;
} catch (error) {
innerSubscriber.error(error);
}
return subscription;
}

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

/** Symbol.observable addition */
/* Note: This will add Symbol.observable globally for all TypeScript users,
however, we are no longer polyfilling Symbol.observable */
declare global {
interface SymbolConstructor {
readonly observable: symbol;
}
}
/** Symbol.observable or a string "@@observable". Used for interop */
export const observable = (() => typeof Symbol === 'function' && Symbol.observable || '@@observable')();
import { Observable } from './Observable';
import { Subscription } from './Subscription';
/**
* Note: This will add Symbol.observable globally for all TypeScript users,
* however, we are no longer polyfilling Symbol.observable
*/
declare global {
interface SymbolConstructor {
readonly observable: symbol;
}
}
/** OPERATOR INTERFACES */

@@ -5,0 +15,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

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

Sorry, the diff of this file is not supported yet

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

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc