(path, targetArray)
| 60 | } |
| 61 | |
| 62 | function addPathHelper (path, targetArray) { |
| 63 | path = nodePath.normalize(path) |
| 64 | if (targetArray && targetArray.indexOf(path) === -1) { |
| 65 | targetArray.unshift(path) |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | function removePathHelper (path, targetArray) { |
| 70 | if (targetArray) { |