src/DllNode.js
export default function DllNode ( prev , next , value ) {
	this.prev = prev ;
	this.next = next ;
	this.value = value ;
}
    
  
    
export default function DllNode ( prev , next , value ) {
	this.prev = prev ;
	this.next = next ;
	this.value = value ;
}