UNPKG

@nephele/adapter-file-system

Version:

File system adapter for the Nephele WebDAV server.

10 lines 357 B
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; //# sourceMappingURL=FileSystemBits.js.map