UNPKG

@hckrnews/logic-gates

Version:

Generate logic gates without thinking.

10 lines (8 loc) 231 B
export default class InvalidInputError extends Error { constructor(input, ...params) { super(...params); this.name = 'InvalidInputError'; this.input = input; this.typeOf = typeof input; } }