Node.js doesn't do this, but we could use an enum to work with these flags: enum Perm { UserRead = 1 << 8, // bit 8 UserWrite = 1 << 7, ...
確定! 回上一頁