Home
Manual
Reference
Source
Test
Repository
F
ArrayStack
F
DynamicStack
F
JSArrayPrototypeStack
F
JSArrayWrapperStack
F
Node
F
NodeStack
utils
F
concat
F
decant
F
split
src/Node.js
export default function Node ( value , next ) { this.value = value ; this.next = next ; }