@fileverse-dev/formulajs 4.4.11-mod-26 → 4.4.11-mod-28
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 +1423 -444
- package/lib/browser/formula.min.js +10 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +1025 -119
- package/lib/esm/crypto-constants.mjs +130 -92
- package/lib/esm/index.mjs +1025 -119
- package/package.json +2 -1
- package/types/cjs/index.d.cts +4 -4
- package/types/esm/index.d.mts +4 -4
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-28",
|
|
4
4
|
"description": "JavaScript implementation of most Microsoft Excel formula functions",
|
|
5
5
|
"author": "Formulajs",
|
|
6
6
|
"publishConfig": {
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"@fileverse-dev/formulajs": "^4.4.11-mod-23",
|
|
63
63
|
"bessel": "^1.0.2",
|
|
64
64
|
"esbuild": "^0.25.4",
|
|
65
|
+
"js-sha3": "^0.9.3",
|
|
65
66
|
"jstat": "^1.9.6"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|
package/types/cjs/index.d.cts
CHANGED
|
@@ -626,7 +626,7 @@ export function CLEAN(text: any): any;
|
|
|
626
626
|
* @returns
|
|
627
627
|
*/
|
|
628
628
|
export function CODE(text: any): any;
|
|
629
|
-
export function COINGECKO(
|
|
629
|
+
export function COINGECKO(category: any, param1: any, param2: any, page?: number, perPage?: number): Promise<string | {}[]>;
|
|
630
630
|
/**
|
|
631
631
|
* Returns the column number of a reference.
|
|
632
632
|
*
|
|
@@ -1296,7 +1296,7 @@ export function EDATE(start_date: any, months: any): any;
|
|
|
1296
1296
|
* @returns
|
|
1297
1297
|
*/
|
|
1298
1298
|
export function EFFECT(nominal_rate: any, npery: any): number | Error;
|
|
1299
|
-
export function EOA(addresses: any, category: any, chains: any, startTime: any, endTime: any, page?: number, offset?: number): Promise<
|
|
1299
|
+
export function EOA(addresses: any, category: any, chains: any, startTime: any, endTime: any, page?: number, offset?: number): Promise<any>;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* Returns the serial number of the last day of the month before or after a specified number of months.
|
|
1302
1302
|
*
|
|
@@ -1529,7 +1529,7 @@ export namespace FINV { }
|
|
|
1529
1529
|
* @returns
|
|
1530
1530
|
*/
|
|
1531
1531
|
export function FINVRT(probability: any, deg_freedom1: any, deg_freedom2: any, ...args: any[]): any;
|
|
1532
|
-
export function FIREFLY(platform: any, contentType: any, identifier: any): Promise<any>;
|
|
1532
|
+
export function FIREFLY(platform: any, contentType: any, identifier: any, start?: number, end?: number): Promise<any>;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* Returns the Fisher transformation.
|
|
1535
1535
|
*
|
|
@@ -1791,7 +1791,7 @@ export function GEOMEAN(...args: any[]): any;
|
|
|
1791
1791
|
* @returns
|
|
1792
1792
|
*/
|
|
1793
1793
|
export function GESTEP(number: any, step: any): any;
|
|
1794
|
-
export function
|
|
1794
|
+
export function GNOSISPAY({ cardId, startDate, endDate, limit, offset, }: {
|
|
1795
1795
|
cardId: any;
|
|
1796
1796
|
startDate: any;
|
|
1797
1797
|
endDate: any;
|
package/types/esm/index.d.mts
CHANGED
|
@@ -626,7 +626,7 @@ export function CLEAN(text: any): any;
|
|
|
626
626
|
* @returns
|
|
627
627
|
*/
|
|
628
628
|
export function CODE(text: any): any;
|
|
629
|
-
export function COINGECKO(
|
|
629
|
+
export function COINGECKO(category: any, param1: any, param2: any, page?: number, perPage?: number): Promise<string | {}[]>;
|
|
630
630
|
/**
|
|
631
631
|
* Returns the column number of a reference.
|
|
632
632
|
*
|
|
@@ -1296,7 +1296,7 @@ export function EDATE(start_date: any, months: any): any;
|
|
|
1296
1296
|
* @returns
|
|
1297
1297
|
*/
|
|
1298
1298
|
export function EFFECT(nominal_rate: any, npery: any): number | Error;
|
|
1299
|
-
export function EOA(addresses: any, category: any, chains: any, startTime: any, endTime: any, page?: number, offset?: number): Promise<
|
|
1299
|
+
export function EOA(addresses: any, category: any, chains: any, startTime: any, endTime: any, page?: number, offset?: number): Promise<any>;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* Returns the serial number of the last day of the month before or after a specified number of months.
|
|
1302
1302
|
*
|
|
@@ -1529,7 +1529,7 @@ export namespace FINV { }
|
|
|
1529
1529
|
* @returns
|
|
1530
1530
|
*/
|
|
1531
1531
|
export function FINVRT(probability: any, deg_freedom1: any, deg_freedom2: any, ...args: any[]): any;
|
|
1532
|
-
export function FIREFLY(platform: any, contentType: any, identifier: any): Promise<any>;
|
|
1532
|
+
export function FIREFLY(platform: any, contentType: any, identifier: any, start?: number, end?: number): Promise<any>;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* Returns the Fisher transformation.
|
|
1535
1535
|
*
|
|
@@ -1791,7 +1791,7 @@ export function GEOMEAN(...args: any[]): any;
|
|
|
1791
1791
|
* @returns
|
|
1792
1792
|
*/
|
|
1793
1793
|
export function GESTEP(number: any, step: any): any;
|
|
1794
|
-
export function
|
|
1794
|
+
export function GNOSISPAY({ cardId, startDate, endDate, limit, offset, }: {
|
|
1795
1795
|
cardId: any;
|
|
1796
1796
|
startDate: any;
|
|
1797
1797
|
endDate: any;
|