(func: Function | string)
| 278 | } |
| 279 | |
| 280 | static printCachedItemsCount(func: Function | string): number { |
| 281 | const cachedItemsCount = getCachedFiles(func).length; |
| 282 | const nm = getFnName(func); |
| 283 | console.log(`Number of cached items for ${nm}: ${cachedItemsCount}`); |
| 284 | return cachedItemsCount; |
| 285 | } |
| 286 | |
| 287 | static getCachedItemsCount(func: Function | string): number { |
| 288 | return getCachedFiles(func).length; |
nothing calls this directly
no test coverage detected