UNPKG

bool

Version:

Boolean expression evaluator

8 lines (7 loc) 192 B
function SyntaxError(message, hash) { this.name = "SyntaxError"; this.message = message; this.hash = hash; } SyntaxError.prototype = Error.prototype; module.exports = SyntaxError;