(ipl: number)
| 68 | } |
| 69 | |
| 70 | function fromLong(ipl: number) { |
| 71 | return `${ipl >>> 24}.${(ipl >> 16) & 255}.${(ipl >> 8) & 255}.${ipl & 255}`; |
| 72 | } |
| 73 | |
| 74 | const ipv6Regex = |
| 75 | /^(::)?(((\d{1,3}\.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/i; |
no outgoing calls
no test coverage detected