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) 285 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QueueException = void 0; class QueueException extends Error { constructor(message) { super(message); this.name = "QueueException"; } } exports.QueueException = QueueException;