repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
4d4f2d8
parent
30e8e88
author
Eric Bower
date
2023-09-16 19:24:45 +0000 UTC
chore(redux): export `send` for debugging
1 files changed,  +1, -1
M redux/middleware.ts
+1, -1
1@@ -5,7 +5,7 @@ import { ActionContext, emit, StoreContext } from "./fx.ts";
2 import { reducers as queryReducers } from "./query.ts";
3 import type { StoreLike } from "./types.ts";
4 
5-function* send(action: AnyAction) {
6+export function* send(action: AnyAction) {
7   const signal = yield* ActionContext;
8   if (action.type === BATCH) {
9     const actions = action.payload as BatchAction[];