@datastructures-js/linked-list
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -7,2 +7,6 @@ /** | ||
/** | ||
* Linked List Node | ||
* @function | ||
*/ | ||
const node = (val, nex) => { | ||
@@ -45,2 +49,6 @@ let value = val; | ||
/** | ||
* Linked List | ||
* @function | ||
*/ | ||
const linkedList = () => { | ||
@@ -47,0 +55,0 @@ let headNode = null; |
{ | ||
"name": "@datastructures-js/linked-list", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "linked list implementation in javascript", | ||
@@ -31,3 +31,2 @@ "main": "index.js", | ||
"grunt": "^1.0.1", | ||
"grunt-contrib-jshint": "^1.1.0", | ||
"grunt-mocha-istanbul": "^5.0.2", | ||
@@ -34,0 +33,0 @@ "grunt-mocha-test": "^0.13.3", |
# @datastrucures-js/linked-list | ||
[![build:?](https://travis-ci.org/eyas-ranjous/datatructures-js/linked-list.svg?branch=master)](https://travis-ci.org/eyas-ranjous/datatructures-js/linked-list) | ||
[![build:?](https://travis-ci.org/datastructures-js/linked-list.svg?branch=master)](https://travis-ci.org/datastructures-js/linked-list) | ||
[![npm](https://img.shields.io/npm/v/@datastructures-js/linked-list.svg)](https://www.npmjs.com/package/@datastructures-js/linked-list) | ||
@@ -9,3 +9,3 @@ [![npm](https://img.shields.io/npm/dm/@datastructures-js/linked-list.svg)](https://www.npmjs.com/packages/@datastructures-js/linked-list) [![npm](https://img.shields.io/badge/node-%3E=%206.0-blue.svg)](https://www.npmjs.com/package/@datastructures-js/linked-list) | ||
<img width="429" alt="ll" src="https://user-images.githubusercontent.com/6517308/35762715-5d00c9bc-0861-11e8-88f7-6e503a1fa3af.png"> | ||
<img width="429" alt="Linked List" src="https://user-images.githubusercontent.com/6517308/35762715-5d00c9bc-0861-11e8-88f7-6e503a1fa3af.png"> | ||
@@ -12,0 +12,0 @@ ## Usage |
Sorry, the diff of this file is not supported yet
10
10797
6
241