(file)
| 859 | |
| 860 | function isStream (s) { return s && typeof s.pipe === 'function' } |
| 861 | function isAbsolutePath (file) { |
| 862 | var regexp = process.platform === 'win32' ? |
| 863 | /^\w:/ : |
| 864 | /^\//; |
| 865 | return regexp.test(file); |
| 866 | } |
| 867 | function isExternalModule (file) { |
| 868 | var regexp = process.platform === 'win32' ? |
| 869 | /^(\.|\w:)/ : |
no outgoing calls
no test coverage detected
searching dependent graphs…