Skip to content

Commit

Permalink
Merge pull request #14 from ilteoood/feat/forEach
Browse files Browse the repository at this point in the history
Feat/for each
  • Loading branch information
ilteoood authored Jun 21, 2024
2 parents d1ef388 + ac1ee62 commit 3dbbb11
Show file tree
Hide file tree
Showing 6 changed files with 1,649 additions and 1,264 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,18 @@ const firstItemsToKeep = 3;
```
</details>
<details>
<summary>forEach</summary>
```javascript
import { forEach } from '@ilteoood/re-flusso/forEach';
.pipeTo(
forEach(console.log)
)
```
</details>
<details>
<summary>fromIterable</summary>
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.8.2/schema.json",
"organizeImports": {
"enabled": false
},
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"format:fix": "pnpm run format --write",
"sort": "biome check --apply-unsafe ./src ./test ./examples",
"lint": "biome lint ./src ./test ./examples",
"lint:fix": "biome check --apply ./src ./test ./examples",
"lint:fix": "biome check --write ./src ./test ./examples",
"test": "pnpm run \"/^test:.*/\"",
"test:node": "vitest --config ./vitest-node.config.ts",
"test:browser": "vitest --config ./vitest-browser.config.ts",
Expand All @@ -45,13 +45,14 @@
"whatwg"
],
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@biomejs/biome": "^1.8.2",
"@edge-runtime/vm": "^3.2.0",
"fast-json-stringify": "^5.16.0",
"glob": "^10.4.1",
"happy-dom": "^14.12.0",
"@types/node": "^20.14.7",
"fast-json-stringify": "^5.16.1",
"glob": "^10.4.2",
"happy-dom": "^14.12.3",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
}
}
Loading

0 comments on commit 3dbbb11

Please sign in to comment.