UNPKG

@lucadani7/algonodejs-for-beginners

Version:

Just a simple Node.js package with some basic algorithms perfect for people just starting out. It's got easy-to-understand TypeScript versions of stuff like sorting, searching, math with numbers, and messing with strings.

11 lines (10 loc) 244 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NodeClass = void 0; class NodeClass { constructor(item, link) { this.item = item; this.link = link; } } exports.NodeClass = NodeClass;