@fileverse-dev/formulajs 4.4.11-mod-65 → 4.4.11-mod-64-patch-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/browser/formula.js +1110 -816
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +531 -255
- package/lib/esm/crypto-constants.mjs +41 -51
- package/lib/esm/index.mjs +532 -254
- package/package.json +5 -3
- package/types/cjs/index.d.cts +12 -23
- package/types/esm/index.d.mts +12 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fileverse-dev/formulajs",
|
|
3
|
-
"version": "4.4.11-mod-
|
|
3
|
+
"version": "4.4.11-mod-64-patch-2",
|
|
4
4
|
"description": "JavaScript implementation of most Microsoft Excel formula functions",
|
|
5
5
|
"author": "Formulajs",
|
|
6
6
|
"publishConfig": {
|
|
@@ -56,7 +56,8 @@
|
|
|
56
56
|
"test:browser": "mocha --recursive --reporter mochawesome",
|
|
57
57
|
"test:coverage": "c8 mocha --recursive",
|
|
58
58
|
"test:watch": "mocha --recursive --watch --parallel --reporter min",
|
|
59
|
-
"types": "tsc"
|
|
59
|
+
"types": "tsc",
|
|
60
|
+
"test:crypto": "npx mocha 'test/crypto-functions/**/*.js' --recursive"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|
|
62
63
|
"bessel": "^1.0.2",
|
|
@@ -76,10 +77,11 @@
|
|
|
76
77
|
"eslint": "^9.26.0",
|
|
77
78
|
"globals": "^16.1.0",
|
|
78
79
|
"jsdom": "^26.1.0",
|
|
79
|
-
"mocha": "^11.
|
|
80
|
+
"mocha": "^11.7.1",
|
|
80
81
|
"mochawesome": "^7.1.3",
|
|
81
82
|
"prettier": "^3.5.3",
|
|
82
83
|
"rollup": "^4.40.2",
|
|
84
|
+
"sinon": "^21.0.0",
|
|
83
85
|
"typescript": "^5.8.3"
|
|
84
86
|
}
|
|
85
87
|
}
|
package/types/cjs/index.d.cts
CHANGED
|
@@ -627,7 +627,17 @@ export function CLEAN(text: any): any;
|
|
|
627
627
|
* @returns
|
|
628
628
|
*/
|
|
629
629
|
export function CODE(text: any): any;
|
|
630
|
-
export function COINGECKO(
|
|
630
|
+
export function COINGECKO(...args: any[]): Promise<{
|
|
631
|
+
message: string;
|
|
632
|
+
functionName: any;
|
|
633
|
+
type: any;
|
|
634
|
+
reason?: undefined;
|
|
635
|
+
} | {
|
|
636
|
+
message: any;
|
|
637
|
+
functionName: any;
|
|
638
|
+
type: any;
|
|
639
|
+
reason: any;
|
|
640
|
+
} | {}[]>;
|
|
631
641
|
/**
|
|
632
642
|
* Returns the column number of a reference.
|
|
633
643
|
*
|
|
@@ -1795,26 +1805,6 @@ export function GEOMEAN(...args: any[]): any;
|
|
|
1795
1805
|
*/
|
|
1796
1806
|
export function GESTEP(number: any, step: any): any;
|
|
1797
1807
|
export function GNOSIS(...args: any[]): Promise<any>;
|
|
1798
|
-
export function GNOSISPAY({ cardId, startDate, endDate, limit, offset }: {
|
|
1799
|
-
cardId: any;
|
|
1800
|
-
startDate: any;
|
|
1801
|
-
endDate: any;
|
|
1802
|
-
limit?: number;
|
|
1803
|
-
offset?: number;
|
|
1804
|
-
}): Promise<string | {
|
|
1805
|
-
createdAt: any;
|
|
1806
|
-
clearedAt: any;
|
|
1807
|
-
country: any;
|
|
1808
|
-
merchant: any;
|
|
1809
|
-
billingAmount: any;
|
|
1810
|
-
billingCurrency: any;
|
|
1811
|
-
transactionAmount: any;
|
|
1812
|
-
transactionCurrency: any;
|
|
1813
|
-
transactionType: any;
|
|
1814
|
-
kind: any;
|
|
1815
|
-
status: any;
|
|
1816
|
-
mcc: any;
|
|
1817
|
-
}[]>;
|
|
1818
1808
|
/**
|
|
1819
1809
|
* Returns values along an exponential trend.
|
|
1820
1810
|
*
|
|
@@ -2637,7 +2627,6 @@ export function MINA(...args: any[]): any;
|
|
|
2637
2627
|
* @returns
|
|
2638
2628
|
*/
|
|
2639
2629
|
export function MINIFS(...args: any[]): any;
|
|
2640
|
-
declare function MINUS$1(...args: any[]): any;
|
|
2641
2630
|
/**
|
|
2642
2631
|
* Converts a serial number to a minute.
|
|
2643
2632
|
*
|
|
@@ -4627,4 +4616,4 @@ declare function formatDate(date: any): string;
|
|
|
4627
4616
|
declare function serialToDate(serial: any): Date;
|
|
4628
4617
|
declare function useDate(): void;
|
|
4629
4618
|
declare function useSerial(): void;
|
|
4630
|
-
export {
|
|
4619
|
+
export {};
|
package/types/esm/index.d.mts
CHANGED
|
@@ -627,7 +627,17 @@ export function CLEAN(text: any): any;
|
|
|
627
627
|
* @returns
|
|
628
628
|
*/
|
|
629
629
|
export function CODE(text: any): any;
|
|
630
|
-
export function COINGECKO(
|
|
630
|
+
export function COINGECKO(...args: any[]): Promise<{
|
|
631
|
+
message: string;
|
|
632
|
+
functionName: any;
|
|
633
|
+
type: any;
|
|
634
|
+
reason?: undefined;
|
|
635
|
+
} | {
|
|
636
|
+
message: any;
|
|
637
|
+
functionName: any;
|
|
638
|
+
type: any;
|
|
639
|
+
reason: any;
|
|
640
|
+
} | {}[]>;
|
|
631
641
|
/**
|
|
632
642
|
* Returns the column number of a reference.
|
|
633
643
|
*
|
|
@@ -1795,26 +1805,6 @@ export function GEOMEAN(...args: any[]): any;
|
|
|
1795
1805
|
*/
|
|
1796
1806
|
export function GESTEP(number: any, step: any): any;
|
|
1797
1807
|
export function GNOSIS(...args: any[]): Promise<any>;
|
|
1798
|
-
export function GNOSISPAY({ cardId, startDate, endDate, limit, offset }: {
|
|
1799
|
-
cardId: any;
|
|
1800
|
-
startDate: any;
|
|
1801
|
-
endDate: any;
|
|
1802
|
-
limit?: number;
|
|
1803
|
-
offset?: number;
|
|
1804
|
-
}): Promise<string | {
|
|
1805
|
-
createdAt: any;
|
|
1806
|
-
clearedAt: any;
|
|
1807
|
-
country: any;
|
|
1808
|
-
merchant: any;
|
|
1809
|
-
billingAmount: any;
|
|
1810
|
-
billingCurrency: any;
|
|
1811
|
-
transactionAmount: any;
|
|
1812
|
-
transactionCurrency: any;
|
|
1813
|
-
transactionType: any;
|
|
1814
|
-
kind: any;
|
|
1815
|
-
status: any;
|
|
1816
|
-
mcc: any;
|
|
1817
|
-
}[]>;
|
|
1818
1808
|
/**
|
|
1819
1809
|
* Returns values along an exponential trend.
|
|
1820
1810
|
*
|
|
@@ -2637,7 +2627,6 @@ export function MINA(...args: any[]): any;
|
|
|
2637
2627
|
* @returns
|
|
2638
2628
|
*/
|
|
2639
2629
|
export function MINIFS(...args: any[]): any;
|
|
2640
|
-
declare function MINUS$1(...args: any[]): any;
|
|
2641
2630
|
/**
|
|
2642
2631
|
* Converts a serial number to a minute.
|
|
2643
2632
|
*
|
|
@@ -4627,4 +4616,4 @@ declare function formatDate(date: any): string;
|
|
|
4627
4616
|
declare function serialToDate(serial: any): Date;
|
|
4628
4617
|
declare function useDate(): void;
|
|
4629
4618
|
declare function useSerial(): void;
|
|
4630
|
-
export {
|
|
4619
|
+
export {};
|