UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

7 lines (6 loc) 165 B
export function getPrintableHost(host) { if (typeof host !== "string") { return "localhost"; } return host.includes(":") ? `[${host}]` : host; }