@fileverse-dev/formulajs 4.4.11-mod-63 → 4.4.11-mod-64-patch-1
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 +1103 -795
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +688 -423
- package/lib/esm/crypto-constants.mjs +41 -51
- package/lib/esm/index.mjs +689 -423
- package/package.json +5 -3
- package/types/cjs/index.d.cts +11 -21
- package/types/esm/index.d.mts +11 -21
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-1",
|
|
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
|
*
|
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
|
*
|