Skip to content

Commit

Permalink
feat: merge doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Dec 1, 2023
1 parent 1bbb366 commit c7cf8e1
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ fromIterable(new Set([1, 2, 3]))
<summary>join</summary>
```javascript
import { join } from '@ilteoood/re-flusso/join';
import { join } from '@ilteoood/re-flusso/strings/join';

const separator = ',';

Expand Down Expand Up @@ -161,6 +161,20 @@ import { map } from '@ilteoood/re-flusso/map';
```
</details>
<details>
<summary>merge</summary>
```javascript
import { merge } from '@ilteoood/re-flusso/merge';
merge(
fromIterable([1]),
fromIterable([2]),
fromIterable([3])
)
```
</details>
<details>
<summary>ndJsonParser</summary>
Expand Down Expand Up @@ -233,7 +247,7 @@ const itemsToSkip = 2;
<summary>split</summary>
```javascript
import { split } from '@ilteoood/re-flusso/split';
import { split } from '@ilteoood/re-flusso/strings/split';
const separator = ',';
Expand Down

0 comments on commit c7cf8e1

Please sign in to comment.