npm.io
1.0.9 • Published 11 months ago

error-cause

Licence
MIT
Version
1.0.9
Deps
8
Size
32 kB
Vulns
0
Weekly
0
Stars
19
Native alternativeUse errors `.cause` property and second `Error` constructors argument to define itUse native JavaScript (Node 16.9.0+) Documentation

error-cause Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES-spec-compliant shim/polyfill/replacement for the .cause property on all Error types that works as far down as ES3

This package implements the es-shim API “multi” interface. It works in an ES3-supported environment and complies with the proposed spec.

Getting started

npm install --save error-cause

Usage/Examples

const assert = require('assert');

require('error-cause/auto');

try {
		x();
} catch (e) {
		const actual = new Error('a better message!', { cause: e });
		assert(actual instanceof Error);
		assert(actual.cause === e);
}

Tests

Clone the repo, npm install, and run npm test

Keywords