UNPKG

linked-list-lib

Version:

This package contain some possibilities of implementations of linked lists

10 lines (9 loc) 208 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseNode = void 0; class BaseNode { constructor(data) { this.data = data; } } exports.BaseNode = BaseNode;