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
20 lines (19 loc) • 461 B
JavaScript
import Noder from './Noder'
export default class SinglePassNoder {
constructor() {
SinglePassNoder.constructor_.apply(this, arguments)
}
static constructor_() {
this._segInt = null
if (arguments.length === 0) {} else if (arguments.length === 1) {
const segInt = arguments[0]
this.setSegmentIntersector(segInt)
}
}
setSegmentIntersector(segInt) {
this._segInt = segInt
}
get interfaces_() {
return [Noder]
}
}