# DOUBLE LINKED LIST [![Build Status](https://travis-ci.org/montaque22/Double-Linked-List.svg?branch=master)](https://travis-ci.org/montaque22/Double-Linked-List)

## Breaking Change - Migrating to V1.0.0
Version 1.0.0 changed the way you instantiate for node. 
See the getting started section for more on how to get started.
Also please see change log for deprecated methods.

## Getting Started

This is a simple double linked list. It has some tests but still use discretion.
You will have to create a new object to use it so for browsers...
```bash
var linkedList =  new DoubleLinkedList()
```
and for node...
```bash
var DoubleLinkedList = require('double-linkedlist').DoubleLinkedList;
var linkedList =  new DoubleLinkedList();
```
***
## Changelog v1.0.0

- Updated documentation
- Updated build. Now includes minified version.
- Converted the build to UMD. As a result the instantiation process for node has changed.
- **Cycle method has been removed. Please use Psychic method instead.**

***