piumino
Version:
Piumino, meaning duvet in Italian, is like a duvet over the bed called Angular TestBed. It provides test helpers to test trivial things like inputs and outputs with a single line.
15 lines (14 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PiuminoError = exports.NOTHING = void 0;
exports.NOTHING = Symbol("NOTHING");
class PiuminoError extends Error {
constructor(description, stack) {
super(description);
this.name = "PiuminoError";
if (stack) {
this.stack = stack;
}
}
}
exports.PiuminoError = PiuminoError;