From 618860ca505bc3af8ae37b14b8e9419c01eea505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Meier?= Date: Thu, 8 Feb 2024 23:18:01 +0100 Subject: [PATCH] Publish v0.3.0-alpha.5 - Fix sortToHigher not being exported in utils.d.ts --- package.json | 2 +- src/utils/utils.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1662c01..d9bad5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fire-lib-js", - "version": "0.3.0-alpha.4", + "version": "0.3.0-alpha.5", "author": "Sören Meier ", "type": "module", "scripts": { diff --git a/src/utils/utils.d.ts b/src/utils/utils.d.ts index df5ae9b..7e8cf94 100644 --- a/src/utils/utils.d.ts +++ b/src/utils/utils.d.ts @@ -22,7 +22,7 @@ export declare function sortToLower(a: any, b: any): number; * @param b - The second value to compare. * @returns 1 if a > b, -1 if b > a, 0 otherwise. */ -export declare function sortToUpper(a: any, b: any): number; +export declare function sortToHigher(a: any, b: any): number; /** * Pads a value with leading zeros until it reaches a specified length.