Initial commit: Book management system with Rust Loco backend and Vue 3 frontend
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
import { concatMap } from './concatMap';
|
||||
import { isFunction } from '../util/isFunction';
|
||||
export function concatMapTo(innerObservable, resultSelector) {
|
||||
return isFunction(resultSelector) ? concatMap(function () { return innerObservable; }, resultSelector) : concatMap(function () { return innerObservable; });
|
||||
}
|
||||
//# sourceMappingURL=concatMapTo.js.map
|
||||
Reference in New Issue
Block a user