Optional ErrorClass: (new (...args) => E)Rest ...args: any[]Optional msgMatches: string | RegExpOptional msg: string24.7.0
import { assertIsError } from "assert";
assertIsError(null); // Throws
assertIsError(new RangeError("Out of range")); // Doesn't throw
assertIsError(new RangeError("Out of range"), SyntaxError); // Throws
assertIsError(new RangeError("Out of range"), SyntaxError, "Out of range"); // Doesn't throw
assertIsError(new RangeError("Out of range"), SyntaxError, "Within range"); // Throws
Make an assertion that
erroris anError. If not then an error will be thrown. An error class and a string that should be included in the error message can also be asserted.