We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f3f09 commit f8a9d6eCopy full SHA for f8a9d6e
src/internal/util/pipe.ts
@@ -18,7 +18,7 @@ export function pipe<T, R>(...fns: Array<UnaryFunction<T, R>>): UnaryFunction<T,
18
return pipeFromArray(fns);
19
}
20
21
-/* @internal */
+/** @internal */
22
export function pipeFromArray<T, R>(fns: Array<UnaryFunction<T, R>>): UnaryFunction<T, R> {
23
if (!fns) {
24
return noop as UnaryFunction<any, any>;
0 commit comments