1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(ext/node): Add missing node:fs and node:constants exports (#25568)

Just a bunch of random fs constants
This commit is contained in:
Nathan Whitaker 2024-09-10 17:37:23 -07:00 committed by GitHub
parent acd62786c2
commit 1521adf5ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 44 additions and 0 deletions

View file

@ -12,6 +12,28 @@ export const {
S_IXUSR,
S_IRGRP,
S_IWGRP,
S_IFBLK,
S_IFCHR,
S_IFDIR,
S_IFIFO,
S_IFLNK,
S_IFMT,
S_IFREG,
S_IFSOCK,
S_IRWXG,
S_IRWXO,
S_IRWXU,
UV_DIRENT_BLOCK,
UV_DIRENT_CHAR,
UV_DIRENT_DIR,
UV_DIRENT_FIFO,
UV_DIRENT_FILE,
UV_DIRENT_LINK,
UV_DIRENT_SOCKET,
UV_DIRENT_UNKNOWN,
UV_FS_O_FILEMAP,
UV_FS_SYMLINK_DIR,
UV_FS_SYMLINK_JUNCTION,
S_IXGRP,
S_IROTH,
S_IWOTH,

View file

@ -51,6 +51,28 @@ export const {
UV_FS_COPYFILE_EXCL,
UV_FS_COPYFILE_FICLONE,
UV_FS_COPYFILE_FICLONE_FORCE,
S_IFBLK,
S_IFCHR,
S_IFDIR,
S_IFIFO,
S_IFLNK,
S_IFMT,
S_IFREG,
S_IFSOCK,
S_IRWXG,
S_IRWXO,
S_IRWXU,
UV_DIRENT_BLOCK,
UV_DIRENT_CHAR,
UV_DIRENT_DIR,
UV_DIRENT_FIFO,
UV_DIRENT_FILE,
UV_DIRENT_LINK,
UV_DIRENT_SOCKET,
UV_DIRENT_UNKNOWN,
UV_FS_O_FILEMAP,
UV_FS_SYMLINK_DIR,
UV_FS_SYMLINK_JUNCTION,
} = fsConstants;
export const {
RTLD_DEEPBIND,