![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
es-aggregate-error
Advanced tools
ES Proposal spec-compliant shim for AggregateError. Invoke its "shim" method to shim AggregateError
if it is unavailable or noncompliant.
This package implements the es-shim API interface. It works in an ES3-supported environment, and complies with the proposed spec.
Most common usage:
var assert = require('assert');
var AggregateError = require('es-aggregate-error');
var oneError = new RangeError('hi!');
var otherError = new EvalError('oops');
var error = new AggregateError([oneError, otherError], 'this is two kinds of errors');
assert.deepEqual(error.errors, [oneError, otherError]);
assert.equal(error.message, 'this is two kinds of errors');
AggregateError.shim(); // will be a no-op if not needed
assert.ok(new globalThis.AggregateError([]) instanceof AggregateError);
Simply clone the repo, npm install
, and run npm test
v1.0.6 - 2021-09-30
node/install
instead of node/run
; use codecov
action 5a9b28c
es-abstract
9d62677
eslint
, @ljharb/eslint-config
, @es-shims/api
, aud
, auto-changelog
, object-inspect
, tape
2c14b62
5097d6a
eslint
, @ljharb/eslint-config
, aud
, tape
cf7500b
eslint
, @ljharb/eslint-config
, has-strict-mode
, object-inspect
, tape
41f8949
04d88f9
3e84f08
es-abstract
, get-intrinsic
, globalthis
70e9947
es-abstract
, functions-have-names
, get-iintrinsic
e68ae0b
prepublishOnly
, for npm 7+ 2858f55
ab5858a
FAQs
ES Proposal spec-compliant shim for AggregateError
The npm package es-aggregate-error receives a total of 0 weekly downloads. As such, es-aggregate-error popularity was classified as not popular.
We found that es-aggregate-error demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.