From 10fa5def8bd89e62658358db349234072e1e876a Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 22 Oct 2020 12:52:39 -0400 Subject: [PATCH] doc: update fs promise-based examples https://github.com/nodejs/node/pull/34843 was cherry-picked onto `v12.x-staging` in 961844d25b 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. --- doc/api/fs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index 57af737a2f6444..cc5ad6dd5bd55e 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -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 { @@ -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 {