Socket
Socket
Sign inDemoInstall

zen-observable-ts

Package Overview
Dependencies
0
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.0 to 0.4.0

1

dist/src/zenObservable.d.ts

@@ -32,3 +32,2 @@ import { ZenObservable } from './types';

flatMap<R>(fn: (value: T) => ZenObservable.ObservableLike<R>): Observable<R>;
[Symbol.observable](): Observable<T>;
}

@@ -396,5 +396,2 @@ "use strict";

};
Observable.prototype[Symbol.observable] = function () {
return this;
};
return Observable;

@@ -401,0 +398,0 @@ }());

@@ -32,3 +32,2 @@ import { ZenObservable } from './types';

flatMap<R>(fn: (value: T) => ZenObservable.ObservableLike<R>): Observable<R>;
[Symbol.observable](): Observable<T>;
}

@@ -396,5 +396,2 @@ "use strict";

};
Observable.prototype[Symbol.observable] = function () {
return this;
};
return Observable;

@@ -401,0 +398,0 @@ }());

2

package.json
{
"name": "zen-observable-ts",
"version": "0.3.0",
"version": "0.4.0",
"description": "An Implementation of ES Observables in Typescript",

@@ -5,0 +5,0 @@ "author": "Evans Hauser <evanshauser@gmail.com>",

@@ -502,8 +502,2 @@ import { ZenObservable } from './types';

}
public [Symbol.observable]() {
return <Observable<T>>this;
// writable: true,
// configurable: true,
}
}

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