UNPKG

@obstinado/gpx-builder

Version:
36 lines (32 loc) 486 B
class Link { /** * @see http://www.topografix.com/gpx/1/1/#type_linkType */ constructor(href, { text, type }) { this.href = href; this.text = text || null; this.type = type || null; } toObject() { const { href, text, type } = this; return { attributes: { href }, ...(text ? { text } : {}), ...(type ? { type } : {}) }; } } export { Link as default };