constructor()

in src/contexts/Stream/CircularLinkedList.js [13:17]


  constructor(data) {
    this.data = data;
    this.next = null; // pointer to the next node
    this.prev = null; // pointer to the prev node
  }