(flag)
| 2054 | return (mode & 49152) === 49152; |
| 2055 | }, |
| 2056 | flagsToPermissionString(flag) { |
| 2057 | var perms = ['r', 'w', 'rw'][flag & 3]; |
| 2058 | if (flag & 512) { |
| 2059 | perms += 'w'; |
| 2060 | } |
| 2061 | return perms; |
| 2062 | }, |
| 2063 | nodePermissions(node, perms) { |
| 2064 | if (FS.ignorePermissions) { |
| 2065 | return 0; |
nothing calls this directly
no outgoing calls
no test coverage detected