(stat, path5, options)
| 1022 | return false; |
| 1023 | } |
| 1024 | function checkStat(stat, path5, options) { |
| 1025 | if (!stat.isSymbolicLink() && !stat.isFile()) { |
| 1026 | return false; |
| 1027 | } |
| 1028 | return checkPathExt(path5, options); |
| 1029 | } |
| 1030 | function isexe(path5, options, cb) { |
| 1031 | fs7.stat(path5, function(er2, stat) { |
| 1032 | cb(er2, er2 ? false : checkStat(stat, path5, options)); |
no test coverage detected
searching dependent graphs…