()
| 2429 | return ((this.mode & constants.S_IFMT) === constants.S_IFDIR); |
| 2430 | } |
| 2431 | isFile() { |
| 2432 | return ((this.mode & constants.S_IFMT) === constants.S_IFREG); |
| 2433 | } |
| 2434 | isBlockDevice() { |
| 2435 | return ((this.mode & constants.S_IFMT) === constants.S_IFBLK); |
| 2436 | } |
no outgoing calls
no test coverage detected