(v)
| 1539 | // Using Number() here returned NaN and was treated as 0, under-counting |
| 1540 | // prerelease minimums. See community PR #516. |
| 1541 | const parse = (v) => String(v || '0.0.0').split('.').map((part) => parseInt(part, 10)); |
| 1542 | const min = parse(minVersion); |
| 1543 | const cur = parse(PROXY_PROTOCOL_VERSION); |
| 1544 | for (let i = 0; i < 3; i++) { |
no outgoing calls