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

17 lines (14 loc) 254 B
export default class StringBuffer { constructor (str) { this.str = str } append (e) { this.str += e } setCharAt (i, c) { this.str = this.str.substr(0, i) + c + this.str.substr(i + 1) } toString (e) { return this.str } }