UNPKG

list-runner

Version:

a lightweight linked-list implementation that offers both Singly (next) and Doubly data structures (next and previous)

14 lines (13 loc) 347 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DOUBLY = exports.SINGLY = exports.CELL = exports.SENTINEL = void 0; var SENTINEL = 'Sentinel'; exports.SENTINEL = SENTINEL; var CELL = 'Cell'; exports.CELL = CELL; var SINGLY = 'Singly'; exports.SINGLY = SINGLY; var DOUBLY = 'Doubly'; exports.DOUBLY = DOUBLY;