(path)
| 102 | return nodeFS.existsSync(path) && nodeFS.statSync(path).isDirectory(); |
| 103 | } |
| 104 | function fileExist(path) { |
| 105 | return nodeFS.existsSync(path) && nodeFS.statSync(path).isFile(); |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * @return Absolute path list. |
no outgoing calls
no test coverage detected
searching dependent graphs…