UNPKG

standard-data-structures

Version:

A collection of standard data-structures for node and browser

9 lines (8 loc) 232 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Exception thrown when a value isn't available */ class NoSuchValueException extends Error { } exports.NoSuchValueException = NoSuchValueException;