"use strict"; export class LinkedListNode { constructor (data) { this.prev = null; this.next = null; this.data = data; } }