Comparing version 31.0.0 to 32.0.0
@@ -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 {}; |
194785
1752