UNPKG

jsts

Version:

A JavaScript library of spatial predicates and functions for processing geometry

18 lines (14 loc) 228 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 } }