convenience functions to query the mode.
()
| 107 | |
| 108 | // convenience functions to query the mode. |
| 109 | func (n *Node) isDir() bool { |
| 110 | return n.Mode.IsDir() |
| 111 | } |
| 112 | |
| 113 | func (n *Node) isRegular() bool { |
| 114 | return n.Mode.IsRegular() |
no outgoing calls
no test coverage detected