Skip to content

Commit f9809f6

Browse files
committed
chore: fix repository name
1 parent 0742fbc commit f9809f6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ npm install web-streams-utils
2323
### ESM (ECMAScript Modules)
2424

2525
```typescript
26-
import { fromIterable, map, filter, toArray } from 'stream-utils'
26+
import { fromIterable, map, filter, toArray } from 'web-streams-utils'
2727

2828
async function example() {
2929
const inputData = [1, 2, 3, 4, 5]
@@ -42,7 +42,7 @@ example()
4242
### CommonJS
4343

4444
```javascript
45-
const { fromIterable, map, filter, toArray } = require('stream-utils')
45+
const { fromIterable, map, filter, toArray } = require('web-streams-utils')
4646

4747
async function example() {
4848
const inputData = [1, 2, 3, 4, 5]
@@ -63,8 +63,7 @@ example()
6363
### Transformation Functions
6464

6565
- `map<T, R>(fn: (chunk: T) => R | Promise<R>): TransformStream<T, R>`
66-
-
67-
`filter<T>(predicate: (chunk: T) => boolean | Promise<boolean>): TransformStream<T, T>`
66+
- `filter<T>(predicate: (chunk: T) => boolean | Promise<boolean>): TransformStream<T, T>`
6867
- `tap<T>(fn: (chunk: T) => void | Promise<void>): TransformStream<T, T>`
6968
- `batch<T>(size: number): TransformStream<T, T[]>`
7069
- `flatten<T>(): TransformStream<T[], T>`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
},
7676
"repository": {
7777
"type": "git",
78-
"url": "https://github.com/username/stream-utils.git"
78+
"url": "https://github.com/username/web-streams-utils.git"
7979
},
8080
"packageManager": "yarn@4.9.1+sha256.6ffc213b3ce0af5c92507977d9537ea3cc085caa52d1c3f08e94d613407fed19"
8181
}

0 commit comments

Comments
 (0)