fp-ts-rxjs
Advanced tools
Comparing version 0.6.8 to 0.6.9
@@ -16,2 +16,7 @@ # Changelog | ||
# 0.6.9 | ||
- **Polish** | ||
- add `fromReaderTask` to `ReaderObservable`, #26 (@mlegenhausen) | ||
# 0.6.8 | ||
@@ -18,0 +23,0 @@ |
@@ -61,2 +61,6 @@ /** | ||
/** | ||
* @since 0.6.9 | ||
*/ | ||
export declare function fromReaderTask<R, A>(ma: ReaderTask<R, A>): ReaderObservable<R, A>; | ||
/** | ||
* @since 0.6.6 | ||
@@ -63,0 +67,0 @@ */ |
@@ -46,2 +46,8 @@ import { getReaderM } from 'fp-ts/es6/ReaderT'; | ||
/** | ||
* @since 0.6.9 | ||
*/ | ||
export function fromReaderTask(ma) { | ||
return function (r) { return R.fromTask(ma(r)); }; | ||
} | ||
/** | ||
* @since 0.6.6 | ||
@@ -48,0 +54,0 @@ */ |
@@ -61,2 +61,6 @@ /** | ||
/** | ||
* @since 0.6.9 | ||
*/ | ||
export declare function fromReaderTask<R, A>(ma: ReaderTask<R, A>): ReaderObservable<R, A>; | ||
/** | ||
* @since 0.6.6 | ||
@@ -63,0 +67,0 @@ */ |
@@ -52,2 +52,9 @@ "use strict"; | ||
/** | ||
* @since 0.6.9 | ||
*/ | ||
function fromReaderTask(ma) { | ||
return function (r) { return R.fromTask(ma(r)); }; | ||
} | ||
exports.fromReaderTask = fromReaderTask; | ||
/** | ||
* @since 0.6.6 | ||
@@ -54,0 +61,0 @@ */ |
{ | ||
"name": "fp-ts-rxjs", | ||
"version": "0.6.8", | ||
"version": "0.6.9", | ||
"description": "fp-ts bindings for RxJS", | ||
@@ -5,0 +5,0 @@ "files": [ |
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
61097
1975