Parses a dotted IPv4 string into 4 octets.
The dotted-quad address.
The 4 address octets.
If the input is not four decimal octets in 0..255.
0..255
1.0.4
import { parseIpv4 } from 'edgeport/dns';parseIpv4('93.184.216.34'); // Uint8Array [93, 184, 216, 34] Copy
import { parseIpv4 } from 'edgeport/dns';parseIpv4('93.184.216.34'); // Uint8Array [93, 184, 216, 34]
Parses a dotted IPv4 string into 4 octets.