(folder, sourceId)
| 3105 | const _folderStatsQueue = []; |
| 3106 | |
| 3107 | function folderCacheKey(folder, sourceId) { |
| 3108 | const sid = sourceId ? String(sourceId) : ''; |
| 3109 | return sid ? `${sid}::${folder}` : folder; |
| 3110 | } |
| 3111 | |
| 3112 | function getFolderStatsTimeout(sourceId = '') { |
| 3113 | const type = String(getSourceTypeById(sourceId || getGlobalActiveSourceId()) || '').toLowerCase(); |
no outgoing calls
no test coverage detected