(host)
| 1816 | // ─── Incoming request API key validation ─────────────────── |
| 1817 | |
| 1818 | export function configureBindHost(host) { |
| 1819 | _bindHost = String(host ?? ''); |
| 1820 | } |
| 1821 | |
| 1822 | export function isLocalBindHost(bindHost = _bindHost) { |
| 1823 | const host = String(bindHost || '').trim().toLowerCase().replace(/^\[|\]$/g, ''); |
no outgoing calls
no test coverage detected