(entry)
| 1236 | * @returns {entry is ExistenceOnlyTimeEntry} true if the entry exists but carries no time info |
| 1237 | */ |
| 1238 | const isExistenceOnly = (entry) => { |
| 1239 | if (entry === undefined || entry === null || entry === "ignore") return false; |
| 1240 | return ( |
| 1241 | /** @type {Partial<FileSystemInfoEntry> & Partial<ContextFileSystemInfoEntry>} */ |
| 1242 | (entry).safeTime === undefined |
| 1243 | ); |
| 1244 | }; |
| 1245 | |
| 1246 | /** @typedef {(err?: WebpackError | null, result?: boolean) => void} CheckSnapshotValidCallback */ |
| 1247 |
no outgoing calls
no test coverage detected