@nohat/js-linked-list

1.0.4 • Public • Published

JS Linked List

build passing

Node library for creating and manipulating linked list data structures.

Installation

Available on NPM

npm install @nohat/js-linked-list

Usage

Import package

const LinkedList = require('@nohat/js-linked-list');

or common js

import LinkedList from '@nohat/js-linked-list';

Use class methods to manipulate lists

const List = new LinkedList();

List.insert('My First Node');

const index0 = List.get({ index: 0 });

Package Sidebar

Install

npm i @nohat/js-linked-list

Weekly Downloads

1

Version

1.0.4

License

ISC

Unpacked Size

12.9 kB

Total Files

13

Last publish

Collaborators

  • nohat