Defanging an IP Address

EasyString

Solution

export function defangIPaddr(address: string): string {
  return address.replace(/\./g, '[.]');
}