Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
idris-maps committed Nov 28, 2021
1 parent b99a85d commit 2f2c819
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,22 @@ type toDsvStdout = <T = any>(
delimiter?: string,
) => Promise<void>;
```

### toNdjsonFile

```ts
type toNdjsonFile = <T = any>(
iterable: AsyncIterableIterator<T>,
path: string,
) => Promise<void>;
```

### toDsvFile

```ts
type toDsvFile = <T = any>(
iterable: AsyncIterableIterator<T>,
path: string,
delimiter?: string,
) => Promise<void>;
```

0 comments on commit 2f2c819

Please sign in to comment.