Comparing version 11.12.0 to 11.13.0
@@ -0,1 +1,11 @@ | ||
<a name="11.13.0"></a> | ||
# [11.13.0](https://github.com/staltz/xstream/compare/v11.12.0...v11.13.0) (2020-09-07) | ||
### Features | ||
* add never and empty <T = any> param ([f448148](https://github.com/staltz/xstream/commit/f448148)), closes [#307](https://github.com/staltz/xstream/issues/307) | ||
<a name="11.12.0"></a> | ||
@@ -260,5 +270,5 @@ # [11.12.0](https://github.com/staltz/xstream/compare/v11.11.0...v11.12.0) (2020-05-28) | ||
* update benchmarks ([b12065d](https://github.com/staltz/xstream/commit/b12065d)) | ||
* **core:** improve performance by encapsulating try/catch ([31fab06](https://github.com/staltz/xstream/commit/31fab06)) | ||
* **core:** merge together core.ts and index.ts ([a03e418](https://github.com/staltz/xstream/commit/a03e418)) | ||
* update benchmarks ([b12065d](https://github.com/staltz/xstream/commit/b12065d)) | ||
@@ -265,0 +275,0 @@ |
@@ -139,3 +139,3 @@ declare const NO: {}; | ||
*/ | ||
static never(): Stream<any>; | ||
static never<T = any>(): Stream<T>; | ||
/** | ||
@@ -155,3 +155,3 @@ * Creates a Stream that immediately emits the "complete" notification when | ||
*/ | ||
static empty(): Stream<any>; | ||
static empty<T = any>(): Stream<T>; | ||
/** | ||
@@ -158,0 +158,0 @@ * Creates a Stream that immediately emits an "error" notification with the |
{ | ||
"name": "xstream", | ||
"version": "11.12.0", | ||
"version": "11.13.0", | ||
"description": "An extremely intuitive, small, and fast functional reactive stream library for JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is too big to display
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
690370
44