Comparing version 4.0.1 to 4.0.2
@@ -0,1 +1,11 @@ | ||
<a name="4.0.2"></a> | ||
## [4.0.2](https://github.com/staltz/xstream/compare/v4.0.1...v4.0.2) (2016-06-08) | ||
### Bug Fixes | ||
* **Stream:** fix small issue with private Stream members ([61b5c12](https://github.com/staltz/xstream/commit/61b5c12)) | ||
<a name="4.0.1"></a> | ||
@@ -2,0 +12,0 @@ ## [4.0.1](https://github.com/staltz/xstream/compare/v4.0.0...v4.0.1) (2016-06-03) |
@@ -266,5 +266,5 @@ export interface InternalListener<T> { | ||
export declare class Stream<T> implements InternalListener<T> { | ||
private _ils; | ||
private _stopID; | ||
private _prod; | ||
protected _ils: Array<InternalListener<T>>; | ||
protected _stopID: any; | ||
protected _prod: InternalProducer<T>; | ||
constructor(producer?: InternalProducer<T>); | ||
@@ -271,0 +271,0 @@ _n(t: T): void; |
{ | ||
"name": "xstream", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "An extremely intuitive, small, and fast functional reactive stream library for JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -897,2 +897,12 @@ <!-- This README.md is automatically generated from source code and files in the /markdown directory. Please DO NOT send pull requests to directly modify this README. Instead, edit the JSDoc comments in source code or the md files in /markdown/. --> | ||
# CHANGELOG | ||
<a name="4.0.2"></a> | ||
## [4.0.2](https://github.com/staltz/xstream/compare/v4.0.1...v4.0.2) (2016-06-08) | ||
### Bug Fixes | ||
* **Stream:** fix small issue with private Stream members ([61b5c12](https://github.com/staltz/xstream/commit/61b5c12)) | ||
<a name="4.0.1"></a> | ||
@@ -899,0 +909,0 @@ ## [4.0.1](https://github.com/staltz/xstream/compare/v4.0.0...v4.0.1) (2016-06-03) |
@@ -931,5 +931,5 @@ import {Promise} from 'es6-promise'; | ||
export class Stream<T> implements InternalListener<T> { | ||
private _ils: Array<InternalListener<T>>; // 'ils' = Internal listeners | ||
private _stopID: any = empty; | ||
private _prod: InternalProducer<T>; | ||
protected _ils: Array<InternalListener<T>>; // 'ils' = Internal listeners | ||
protected _stopID: any = empty; | ||
protected _prod: InternalProducer<T>; | ||
@@ -1443,3 +1443,3 @@ constructor(producer?: InternalProducer<T>) { | ||
* Prepends the given `initial` value to the sequence of events emitted by the | ||
* input stream. The returned stream is a MemoryStream, which means it is | ||
* input stream. The returned stream is a MemoryStream, which means it is | ||
* already `remember()`'d. | ||
@@ -1490,3 +1490,3 @@ * | ||
* the entire execution of the input stream, allowing you to accumulate them | ||
* together. It's essentially like `Array.prototype.reduce`. The returned | ||
* together. It's essentially like `Array.prototype.reduce`. The returned | ||
* stream is a MemoryStream, which means it is already `remember()`'d. | ||
@@ -1493,0 +1493,0 @@ * |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
736722
1326