MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / _getFilesForInstall

Function _getFilesForInstall

lib/models/blueprint.js:861–866  ·  view source on GitHub ↗

@private @method _getFilesForInstall @param {Array} targetFiles @return {Array} files

(targetFiles)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…