(sourceId = '')
| 1642 | } |
| 1643 | |
| 1644 | function isFtpSource(sourceId = '') { |
| 1645 | const type = String(getSourceTypeById(sourceId || getGlobalActiveSourceId()) || '').toLowerCase(); |
| 1646 | return type === 'ftp'; |
| 1647 | } |
| 1648 | |
| 1649 | function isLocalSourceLike(sourceId = '') { |
| 1650 | const id = String(sourceId || '').trim().toLowerCase(); |
no test coverage detected