(file)
| 22 | // Sometimes node is unable to read the stat property (file-busy) |
| 23 | |
| 24 | function isFile(file) { |
| 25 | try { |
| 26 | return file.stat && file.stat.isFile(); |
| 27 | } catch (e) { |
| 28 | return false; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | module.watch('copy', function () { |
| 33 |
no outgoing calls
no test coverage detected