/** * @author xiangshouding */ import {Map} from '../types/lang'; import {Address} from '../protocol/protocol'; export function random(hosts: Array
) { let len = hosts.length; return hosts[Math.floor(Math.random() * len)]; }