UNPKG

zetabasejs

Version:

A NoSQL database for quick deployment.

12 lines (11 loc) 223 B
class NodePtr { constructor(cur, next) { this.cur = cur; this.next = next; } update(nodePtr) { this.cur = nodePtr.cur; this.next = nodePtr.next; } } module.exports = NodePtr;