(path5, options, cb)
| 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)); |
| 1033 | }); |
| 1034 | } |
| 1035 | function sync(path5, options) { |
| 1036 | return checkStat(fs7.statSync(path5), path5, options); |
| 1037 | } |