(filePath, pattern)
| 112 | } |
| 113 | |
| 114 | function pickSync(filePath, pattern) { |
| 115 | return globSync(`**/${pattern}`, { |
| 116 | cwd: filePath, |
| 117 | dot: true, |
| 118 | mark: true, |
| 119 | }).sort(); |
| 120 | } |
| 121 | |
| 122 | function removeTmp(array) { |
| 123 | remove(array, function (entry) { |
no outgoing calls
no test coverage detected
searching dependent graphs…