1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 04:40:45 +00:00
falk-werner_webfuse-provider/example/daemon/www/js/wsfs/file_mode.js

10 lines
405 B
JavaScript
Raw Normal View History

2019-02-21 23:35:59 +00:00
export class FileMode {
static get ACCESS_MODE() { return 0x003; }
static get READONLY() { return 0x000; }
static get WRITEONLY() { return 0x001; }
static get READWRITE() { return 0x002; }
static get CREATE() { return 0x040; }
static get EXCLUSIVE() { return 0x080; }
static get TRUNKATE() { return 0x200; }
static get APPEND() { return 0x400; }
}