From a0160e8fc82583c4f903ae165fe9f204896cf56d Mon Sep 17 00:00:00 2001 From: Zxilly Date: Tue, 18 Feb 2025 23:11:09 +0800 Subject: [PATCH] formatted --- src/syscall/fs_js.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syscall/fs_js.go b/src/syscall/fs_js.go index 9878d04f90..7ef3cdee14 100644 --- a/src/syscall/fs_js.go +++ b/src/syscall/fs_js.go @@ -29,7 +29,7 @@ var ( nodeTRUNC = constants.Get("O_TRUNC").Int() nodeAPPEND = constants.Get("O_APPEND").Int() nodeEXCL = constants.Get("O_EXCL").Int() - + // NodeJS on Windows does not support O_DIRECTORY, so we default // to -1 and assign it in init if available. // See https://nodejs.org/docs/latest/api/fs.html#file-open-constants.