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 47.0.0 to 48.0.0

3

esm/src/io.js

@@ -55,2 +55,3 @@ import { juxt, pairRight, stack } from "./juxt.js";

let rejected = false;
const error = new Error(`Timed out after ${ms} ms`);
const timer = setTimeout(() => {

@@ -60,3 +61,3 @@ if (wasResolved)

rejected = true;
reject(new Error(`Timed out after ${ms} ms`));
reject(error);
}, ms);

@@ -63,0 +64,0 @@ f(...args).then((x) => {

{
"name": "gamla",
"version": "47.0.0",
"version": "48.0.0",
"description": "Functional programming with async and type safety",

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

@@ -59,2 +59,3 @@ "use strict";

let rejected = false;
const error = new Error(`Timed out after ${ms} ms`);
const timer = setTimeout(() => {

@@ -64,3 +65,3 @@ if (wasResolved)

rejected = true;
reject(new Error(`Timed out after ${ms} ms`));
reject(error);
}, ms);

@@ -67,0 +68,0 @@ f(...args).then((x) => {

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