(path)
| 127 | * Test if path is ignored files |
| 128 | */ |
| 129 | var isIgnoredFile = function(path) { |
| 130 | return _.reduce(_ignoredFiles, function(state, ignoredPath) { |
| 131 | if (state) return state; |
| 132 | if (path.indexOf(ignoredPath) == 0) return true; |
| 133 | }, false); |
| 134 | }; |
| 135 | |
| 136 | /* |
| 137 | * Return informations about a fileentry |
no outgoing calls
no test coverage detected