(file)
| 865 | return regexp.test(file); |
| 866 | } |
| 867 | function isExternalModule (file) { |
| 868 | var regexp = process.platform === 'win32' ? |
| 869 | /^(\.|\w:)/ : |
| 870 | /^[\/.]/; |
| 871 | return !regexp.test(file); |
| 872 | } |
| 873 | function relativePath (from, to) { |
| 874 | // Replace \ with / for OS-independent behavior |
| 875 | return cachedPathRelative(from, to).replace(/\\/g, '/'); |
no outgoing calls
no test coverage detected
searching dependent graphs…