Skip to content

Commit 6e08c8e

Browse files
abdulrahman1sTheMaestro1s
and
TheMaestro1s
authored
docs: Convert CJS imports to ES (#354)
* docs: fixes some examples * Convert cjs to es import Co-authored-by: TheMaestro1s <[email protected]>
1 parent 5920155 commit 6e08c8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ Postgres.js supports [`COPY ...`](https://www.postgresql.org/docs/14/sql-copy.ht
433433
#### ```await sql`copy ... from stdin`.writable() -> Writable```
434434

435435
```js
436-
const { pipeline } = require('stream/promises')
436+
import { pipeline } from 'node:stream/promises'
437437

438438
// Stream of users with the default tab delimitated cells and new-line delimitated rows
439439
const userStream = Readable.from([
@@ -449,8 +449,8 @@ await pipeline(userStream, query);
449449

450450
##### Using Stream Pipeline
451451
```js
452-
const { pipeline } = require('stream/promises')
453-
const { createWriteStream } = require('fs')
452+
import { pipeline } from 'node:stream/promises'
453+
import { createWriteStream } from 'node:fs'
454454

455455
const readableStream = await sql`copy users (name, age) to stdout`.readable()
456456
await pipeline(readableStream, createWriteStream('output.tsv'))

0 commit comments

Comments
 (0)