(files: Set<string>, filename: string)
| 1867 | } |
| 1868 | |
| 1869 | function addInputFile(files: Set<string>, filename: string) { |
| 1870 | const normalized = path.resolve(filename) |
| 1871 | if (fs.existsSync(normalized) && fs.statSync(normalized).isFile()) { |
| 1872 | files.add(normalized) |
| 1873 | } |
| 1874 | } |
| 1875 | |
| 1876 | /** |
| 1877 | * Computes the cache key for the configured JSDoc extraction inputs. |
no test coverage detected