UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

12 lines 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Node = void 0; class Node { constructor(value, left, right) { this.value = value; this.left = left; this.right = right; } } exports.Node = Node; //# sourceMappingURL=node.js.map