We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e50a5e2 commit 8e70163Copy full SHA for 8e70163
src/composition.ts
@@ -75,7 +75,7 @@ const errorBoundry = <F extends Func>(f: F) => {
75
};
76
77
export const pipe: typeof pipeWithoutStack = (...fs) =>
78
- // @ts-expect-error not sure why
+ // @ts-ignore-error error in deno but not in node
79
errorBoundry(pipeWithoutStack(...fs));
80
81
type Reversed<Tuple> = Tuple extends [infer Head, ...infer Rest]
0 commit comments