UNPKG

@klayr/utils

Version:

Library containing generic utility functions for use with Klayr-related software

14 lines 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Node = void 0; class Node { constructor(key, value) { this.key = key; this.value = value; } clone() { return new Node(this.key, this.value); } } exports.Node = Node; //# sourceMappingURL=node.js.map