Skip to content

Commit

Permalink
doc: update fs promise-based examples
Browse files Browse the repository at this point in the history
#34843 was cherry-picked onto
`v12.x-staging` in 961844d but the `fs/promises` API, as used
in the examples, is only available from Node.js 14. Change the
added examples to use `require(fs).promises` instead.
  • Loading branch information
richardlau committed Oct 22, 2020
1 parent 4d1df84 commit 10fa5de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/fs.md
Expand Up @@ -60,7 +60,7 @@ Promise-based operations return a `Promise` that is resolved when the
asynchronous operation is complete.

```js
const fs = require('fs/promises');
const fs = require('fs').promises;

(async function(path) {
try {
Expand Down Expand Up @@ -106,7 +106,7 @@ fs.rename('/tmp/hello', '/tmp/world', (err) => {
Or, use the promise-based API:

```js
const fs = require('fs/promises');
const fs = require('fs').promises;

(async function(from, to) {
try {
Expand Down

0 comments on commit 10fa5de

Please sign in to comment.