1.0.5 • Published 6 years ago

linked-list-print v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

linked-list-print

The package, allows the user to print a linked list as a String unit.

Installing

npm install --save linked-list-print

And in Node:

var print = require('linked-list-print');

Examples

[const print = require('linked-list-print');

const c = {
  value: 'c',
  next: undefined
}

const b = {
  value: 'b',
  next: c
}

const a = {
  value: 'a',
  next: b
}


print(a);
// a->b->c

Authors

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago