@private @method isValidFile @param {Object} fileInfo @return {Promise}
(fileInfo)
| 1710 | @return {Promise} |
| 1711 | */ |
| 1712 | function isValidFile(fileInfo) { |
| 1713 | if (isIgnored(fileInfo)) { |
| 1714 | return false; |
| 1715 | } else { |
| 1716 | return isFilePath(fileInfo); |
| 1717 | } |
| 1718 | } |
| 1719 | |
| 1720 | /** |
| 1721 | @private |
nothing calls this directly
no test coverage detected
searching dependent graphs…