@node-dlc/core
Version:
15 lines • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkedListNode = void 0;
class LinkedListNode {
/**
* Creates a linked list node with the specified data
*/
constructor(value) {
this.value = value;
this.prev = null;
this.next = null;
}
}
exports.LinkedListNode = LinkedListNode;
//# sourceMappingURL=LinkedListNode.js.map