repos / starfx

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

commit
d9adf0a
parent
61fbfb2
author
Eric Bower
date
2023-04-20 01:16:08 +0000 UTC
chore: fix imports
1 files changed,  +2, -2
M fx/call.ts
+2, -2
1@@ -1,6 +1,6 @@
2 import type { OpFn } from "../types.ts";
3-import type { Err, Ok, Operation, Result, Task } from "../deps.ts";
4-import { action, expect, spawn } from "../deps.ts";
5+import type { Operation, Result, Task } from "../deps.ts";
6+import { action, Err, expect, Ok, spawn } from "../deps.ts";
7 import { ErrContext } from "../context.ts";
8 
9 export const isFunc = (f: unknown) => typeof f === "function";