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
88
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 31.0.0 to 32.0.0

4

esm/src/trace.js

@@ -5,6 +5,4 @@ const frameToString = ({ line, file, column }) => `${file}:${line}:${column}`;

/(.+)@(.+):(\d+):(\d+)/g.exec(stackLine); // Safari style
if (!matches) {
console.error(`could not figure out stack line ${stackLine}`);
if (!matches)
return null;
}
const [, , file, line, column] = matches;

@@ -11,0 +9,0 @@ return { file, line: parseInt(line), column: parseInt(column) };

@@ -6,3 +6,3 @@ {

"name": "gamla",
"version": "31.0.0",
"version": "32.0.0",
"description": "Functional programming with async and type safety",

@@ -9,0 +9,0 @@ "license": "MIT",

@@ -8,6 +8,4 @@ "use strict";

/(.+)@(.+):(\d+):(\d+)/g.exec(stackLine); // Safari style
if (!matches) {
console.error(`could not figure out stack line ${stackLine}`);
if (!matches)
return null;
}
const [, , file, line, column] = matches;

@@ -14,0 +12,0 @@ return { file, line: parseInt(line), column: parseInt(column) };

@@ -30,4 +30,4 @@ export declare const anymap: <X>(f: (x: X) => boolean) => (xs: X[]) => boolean;

export declare const drop: <T>(n: number) => (xs: T[]) => T[];
export declare const enumerate: <T>(xs: T[]) => (number | T)[][];
export declare const enumerate: <T>(xs: T[]) => [number, T][];
export declare const slidingWindow: <T>(l: number) => (xs: T[]) => T[][];
export {};
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