UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

27 lines (22 loc) 631 B
const list = [ // Native ES errors https://262.ecma-international.org/12.0/#sec-well-known-intrinsic-objects EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, // Built-in errors globalThis.DOMException, // Node-specific errors // https://nodejs.org/api/errors.html globalThis.AssertionError, globalThis.SystemError, ] // Non-native Errors are used with `globalThis` because they might be missing. This filter drops them when undefined. .filter(Boolean) .map( constructor => [constructor.name, constructor], ); const errorConstructors = new Map(list); export default errorConstructors;