Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@compas/stdlib

Package Overview
Dependencies
Maintainers
1
Versions
196
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@compas/stdlib - npm Package Compare versions

Comparing version 0.10.3 to 0.10.4

2

package.json
{
"name": "@compas/stdlib",
"version": "0.10.3",
"version": "0.10.4",
"description": "All kinds of utility functions",

@@ -5,0 +5,0 @@ "exports": {

@@ -104,2 +104,9 @@ import { lstatSync, realpathSync } from "node:fs";

_compasSentryExport.captureException(reason);
return _compasSentryExport.close(1000).then(() => {
unhandled({
type: "unhandledRejection",
reason: AppError.format(reason),
promise,
});
});
}

@@ -117,2 +124,9 @@

_compasSentryExport.captureException(error);
return _compasSentryExport.close(1000).then(() => {
unhandled({
type: "uncaughtException",
error: AppError.format(error),
origin,
});
});
}

@@ -137,2 +151,9 @@

_compasSentryExport.captureException(e);
return _compasSentryExport.close(1000).then(() => {
unhandled({
type: "error",
message: "Error caught from callback passed in `mainFn`",
error: AppError.format(e),
});
});
}

@@ -139,0 +160,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc