From 02c74e72eacc34fa90ae85983900a5d93f13b6c8 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Wed, 4 Sep 2019 00:10:04 +0200 Subject: 2019-09-04, Version 12.10.0 (Current) Notable changes: * deps: * Update npm to 6.10.3 (isaacs) https://github.com/nodejs/node/pull/29023 * fs: * Add recursive option to rmdir() (cjihrig) https://github.com/nodejs/node/pull/29168 * Allow passing true to emitClose option (Giorgos Ntemiris) https://github.com/nodejs/node/pull/29212 * Add \*timeNs properties to BigInt Stats objects (Joyee Cheung) https://github.com/nodejs/node/pull/21387 * net: * Allow reading data into a static buffer (Brian White) https://github.com/nodejs/node/pull/25436 PR-URL: https://github.com/nodejs/node/pull/29429 --- doc/api/fs.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/api/fs.md') diff --git a/doc/api/fs.md b/doc/api/fs.md index 5341b4bc15..5b210be5ee 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -735,7 +735,7 @@ milliseconds since the POSIX Epoch. ### stats.atimeNs * {bigint} @@ -747,7 +747,7 @@ nanoseconds since the POSIX Epoch. ### stats.mtimeNs * {bigint} @@ -759,7 +759,7 @@ nanoseconds since the POSIX Epoch. ### stats.ctimeNs * {bigint} @@ -771,7 +771,7 @@ in nanoseconds since the POSIX Epoch. ### stats.birthtimeNs * {bigint} @@ -1506,7 +1506,7 @@ fs.copyFileSync('source.txt', 'destination.txt', COPYFILE_EXCL);