UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

22 lines (20 loc) 386 B
import MarkHalfEdge from '../edgegraph/MarkHalfEdge' export default class DissolveHalfEdge extends MarkHalfEdge { constructor () { const orig = arguments[0] super(orig) this._isStart = false } setStart () { this._isStart = true } isStart () { return this._isStart } interfaces_ () { return [] } getClass () { return DissolveHalfEdge } }