@private @method _getFilesForInstall @param {Array} targetFiles @return {Array} files
(targetFiles)
| 859 | @return {Array} files |
| 860 | */ |
| 861 | _getFilesForInstall(targetFiles) { |
| 862 | let files = this.files(this.options); |
| 863 | |
| 864 | // if we've defined targetFiles, get file info on ones that match |
| 865 | return (targetFiles && targetFiles.length > 0 && intersection(files, targetFiles)) || files; |
| 866 | }, |
| 867 | |
| 868 | /** |
| 869 | @private |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…