UNPKG

simple-mdns-announce

Version:

A NodeJS library to announce services using mdns.

8 lines (7 loc) 164 B
export function composeTypeAndSubtype(type: string, subtype?: string): string { if (subtype) { return `${type},${subtype}`; } else { return type; } }