(raw)
| 99 | function isAbsoluteHttpUrl(u) { return /^https?:\/\//i.test(u || ''); } |
| 100 | |
| 101 | function normalizeSourceId(raw) { |
| 102 | const id = String(raw || '').trim(); |
| 103 | return id; |
| 104 | } |
| 105 | |
| 106 | function resolveActiveSourceId() { |
| 107 | try { |
no outgoing calls
no test coverage detected