connective-tissue
v1.4.1
Published
[![Coverage Status](https://coveralls.io/repos/github/MatthewZito/connective-tissue/badge.svg?branch=master)](https://coveralls.io/github/MatthewZito/connective-tissue?branch=master) [![Continuous Deployment](https://github.com/MatthewZito/connective-tiss
Downloads
3
Maintainers
Readme
connective-tissue
connective-tissue
is a collection of linked list and ring data structures implemented in and for JavaScript. The structures in this library follow the specifications of their classical counterparts; they are well-tested and optimal implementations of:
- Singly Linked List
- Circular Singly Linked List
- Circular Doubly Linked List (sentinel-terminated)
Installation
npm install connective-tissue
OR
yarn add connective-tissue
Supported Environments
connective-tissue
currently supports UMD, CommonJS (node versions >= 10), and ESM build-targets
Commonjs:
const { CircularDoublyLinkedList } = require('connective-tissue');
ESM:
import { CircularDoublyLinkedList } from 'connective-tissue';
Documentation
See docs