UNPKG

@nephele/adapter-file-system

Version:

File system adapter for the Nephele WebDAV server.

11 lines (10 loc) 352 B
// Unix file system permission bits. export const userReadBit = 0o400; export const userWriteBit = 0o200; export const userExecuteBit = 0o100; export const groupReadBit = 0o40; export const groupWriteBit = 0o20; export const groupExecuteBit = 0o10; export const otherReadBit = 0o4; export const otherWriteBit = 0o2; export const otherExecuteBit = 0o1;