@fileverse-dev/formulajs 4.4.11-mod-25 → 4.4.11-mod-27
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 +1367 -358
- package/lib/browser/formula.min.js +10 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +968 -68
- package/lib/esm/crypto-constants.mjs +61 -37
- package/lib/esm/index.mjs +968 -68
- package/package.json +2 -1
- package/types/cjs/index.d.cts +2 -2
- package/types/esm/index.d.mts +2 -2
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-27",
|
|
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
|
*
|
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
|
*
|