(sourceId = '')
| 172 | } |
| 173 | |
| 174 | function getLastOpenedFolderKey(sourceId = '') { |
| 175 | const id = String(sourceId || getActiveSourceId() || '').trim(); |
| 176 | return id ? `lastOpenedFolder.${id}` : 'lastOpenedFolder'; |
| 177 | } |
| 178 | |
| 179 | function getLastOpenedFolder(sourceId = '') { |
| 180 | const key = getLastOpenedFolderKey(sourceId); |
no test coverage detected