(array)
| 120 | } |
| 121 | |
| 122 | function removeTmp(array) { |
| 123 | remove(array, function (entry) { |
| 124 | return /^tmp[\\/]$/.test(entry); |
| 125 | }); |
| 126 | } |
| 127 | function removeIgnored(array) { |
| 128 | remove(array, function (fn) { |
| 129 | return Blueprint.ignoredFiles.some(function (ignoredFile) { |
no test coverage detected
searching dependent graphs…