Skip to content

Commit

Permalink
:types lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guy-borderless committed Jan 1, 2025
1 parent df3f242 commit d54ec2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion functions/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
* Utilities for working with functions.
*
* ```ts
* import { pipe } from "@std/functions";
* import { assertEquals } from "@std/assert";
*
* const myPipe = pipe(
* Math.abs,
* Math.sqrt,
Expand All @@ -17,4 +20,4 @@
* @module
*/

export * from "./pipe.ts";
export { pipe } from "./pipe.ts";
2 changes: 2 additions & 0 deletions functions/pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ type PipeArgs<F extends AnyFunc[], Acc extends AnyFunc[] = []> = F extends [
*
* @example Usage
* ```ts
* import { assertEquals } from "@std/assert";
*
* const myPipe = pipe(
* Math.abs,
* Math.sqrt,
Expand Down

0 comments on commit d54ec2e

Please sign in to comment.