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

15 lines (14 loc) 233 B
export default class LinkedList { constructor () { this.array_ = [] } addLast (e) { this.array_.push(e) } removeFirst () { return this.array_.shift() } isEmpty () { return this.array_.length === 0 } }