Home Manual Reference Source Test

src/LazyNode.js

export default function LazyNode(value, next) {
	this.value = value;
	this.next = next;
}