New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gamla

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gamla - npm Package Compare versions

Comparing version 60.0.0 to 61.0.0

11

esm/src/composition.js

@@ -11,3 +11,4 @@ import { reverse } from "./array.js";

const errorBoundry = (f) => {
const augment = augmentException(currentLocation(4));
const location = currentLocation(4);
const augment = augmentException(location);
return ((...x) => {

@@ -18,2 +19,6 @@ try {

? result.catch((e) => {
if (e === undefined) {
console.error(`undefined error within ${location}`);
throw e;
}
throw augment(e);

@@ -24,2 +29,6 @@ })

catch (e) {
if (e === undefined) {
console.error(`undefined error within ${location}`);
throw e;
}
throw augment(e);

@@ -26,0 +35,0 @@ }

2

package.json
{
"name": "gamla",
"version": "60.0.0",
"version": "61.0.0",
"description": "Functional programming with async and type safety",

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

@@ -14,3 +14,4 @@ "use strict";

const errorBoundry = (f) => {
const augment = augmentException((0, trace_js_1.currentLocation)(4));
const location = (0, trace_js_1.currentLocation)(4);
const augment = augmentException(location);
return ((...x) => {

@@ -21,2 +22,6 @@ try {

? result.catch((e) => {
if (e === undefined) {
console.error(`undefined error within ${location}`);
throw e;
}
throw augment(e);

@@ -27,2 +32,6 @@ })

catch (e) {
if (e === undefined) {
console.error(`undefined error within ${location}`);
throw e;
}
throw augment(e);

@@ -29,0 +38,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