@fileverse-dev/formulajs 4.4.11-mod-39 → 4.4.11-mod-38-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 +304 -256
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +104 -36
- package/lib/esm/crypto-constants.mjs +27 -2
- package/lib/esm/index.mjs +103 -36
- package/package.json +1 -1
- package/types/cjs/index.d.cts +10 -15
- package/types/esm/index.d.mts +10 -15
package/types/cjs/index.d.cts
CHANGED
|
@@ -420,7 +420,7 @@ export function BITRSHIFT(number: any, shift_amount: any): number | Error;
|
|
|
420
420
|
* @returns
|
|
421
421
|
*/
|
|
422
422
|
export function BITXOR(number1: any, number2: any): number | Error;
|
|
423
|
-
export function BLOCKSCOUT(
|
|
423
|
+
export function BLOCKSCOUT(...args: any[]): Promise<any>;
|
|
424
424
|
/**
|
|
425
425
|
* Rounds a number to the nearest integer or to the nearest multiple of significance.
|
|
426
426
|
*
|
|
@@ -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(...args: any[]): 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(
|
|
1299
|
+
export function EOA(...args: any[]): 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(
|
|
1532
|
+
export function FIREFLY(...args: any[]): Promise<any>;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* Returns the Fisher transformation.
|
|
1535
1535
|
*
|
|
@@ -1791,13 +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 GNOSISPAY(
|
|
1795
|
-
cardId: any;
|
|
1796
|
-
startDate: any;
|
|
1797
|
-
endDate: any;
|
|
1798
|
-
limit?: number;
|
|
1799
|
-
offset?: number;
|
|
1800
|
-
}): Promise<string | {
|
|
1794
|
+
export function GNOSISPAY(...args: any[]): Promise<string | {
|
|
1801
1795
|
createdAt: any;
|
|
1802
1796
|
clearedAt: any;
|
|
1803
1797
|
country: any;
|
|
@@ -2841,7 +2835,7 @@ export function NETWORKDAYSINTL(start_date: any, end_date: any, weekend: any, ho
|
|
|
2841
2835
|
* @returns
|
|
2842
2836
|
*/
|
|
2843
2837
|
export function NETWORKDAYS_INTL(start_date: any, end_date: any, weekend: any, holidays: any): number | Error;
|
|
2844
|
-
export function NEYNAR(
|
|
2838
|
+
export function NEYNAR(...args: any[]): Promise<any>;
|
|
2845
2839
|
/**
|
|
2846
2840
|
* Returns the annual nominal interest rate.
|
|
2847
2841
|
*
|
|
@@ -3553,7 +3547,7 @@ export function RRI(nper: any, pv: any, fv: any): number | Error;
|
|
|
3553
3547
|
* @returns
|
|
3554
3548
|
*/
|
|
3555
3549
|
export function RSQ(known_y: any, known_x: any): number | Error;
|
|
3556
|
-
export function SAFE(
|
|
3550
|
+
export function SAFE(...args: any[]): Promise<any>;
|
|
3557
3551
|
/**
|
|
3558
3552
|
* Finds one text value within another (not case-sensitive)
|
|
3559
3553
|
*
|
|
@@ -3825,7 +3819,7 @@ export function SUBTOTAL(function_num: any, ref1: any): any;
|
|
|
3825
3819
|
*
|
|
3826
3820
|
* @returns
|
|
3827
3821
|
*/
|
|
3828
|
-
|
|
3822
|
+
declare function SUM$1(...args: any[]): number;
|
|
3829
3823
|
/**
|
|
3830
3824
|
* Adds the values specified by a given criteria.
|
|
3831
3825
|
*
|
|
@@ -3862,6 +3856,7 @@ export function SUMPRODUCT(...args: any[]): number | Error;
|
|
|
3862
3856
|
* @returns
|
|
3863
3857
|
*/
|
|
3864
3858
|
export function SUMSQ(...args: any[]): number | Error;
|
|
3859
|
+
export function SUMTEST(...args: any[]): number;
|
|
3865
3860
|
/**
|
|
3866
3861
|
* Returns the sum of the difference of squares of corresponding values in two arrays.
|
|
3867
3862
|
*
|
|
@@ -4615,4 +4610,4 @@ declare function formatDate(date: any): string;
|
|
|
4615
4610
|
declare function serialToDate(serial: any): Date;
|
|
4616
4611
|
declare function useDate(): void;
|
|
4617
4612
|
declare function useSerial(): void;
|
|
4618
|
-
export {};
|
|
4613
|
+
export { SUM$1 as SUM };
|
package/types/esm/index.d.mts
CHANGED
|
@@ -420,7 +420,7 @@ export function BITRSHIFT(number: any, shift_amount: any): number | Error;
|
|
|
420
420
|
* @returns
|
|
421
421
|
*/
|
|
422
422
|
export function BITXOR(number1: any, number2: any): number | Error;
|
|
423
|
-
export function BLOCKSCOUT(
|
|
423
|
+
export function BLOCKSCOUT(...args: any[]): Promise<any>;
|
|
424
424
|
/**
|
|
425
425
|
* Rounds a number to the nearest integer or to the nearest multiple of significance.
|
|
426
426
|
*
|
|
@@ -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(...args: any[]): 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(
|
|
1299
|
+
export function EOA(...args: any[]): 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(
|
|
1532
|
+
export function FIREFLY(...args: any[]): Promise<any>;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* Returns the Fisher transformation.
|
|
1535
1535
|
*
|
|
@@ -1791,13 +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 GNOSISPAY(
|
|
1795
|
-
cardId: any;
|
|
1796
|
-
startDate: any;
|
|
1797
|
-
endDate: any;
|
|
1798
|
-
limit?: number;
|
|
1799
|
-
offset?: number;
|
|
1800
|
-
}): Promise<string | {
|
|
1794
|
+
export function GNOSISPAY(...args: any[]): Promise<string | {
|
|
1801
1795
|
createdAt: any;
|
|
1802
1796
|
clearedAt: any;
|
|
1803
1797
|
country: any;
|
|
@@ -2841,7 +2835,7 @@ export function NETWORKDAYSINTL(start_date: any, end_date: any, weekend: any, ho
|
|
|
2841
2835
|
* @returns
|
|
2842
2836
|
*/
|
|
2843
2837
|
export function NETWORKDAYS_INTL(start_date: any, end_date: any, weekend: any, holidays: any): number | Error;
|
|
2844
|
-
export function NEYNAR(
|
|
2838
|
+
export function NEYNAR(...args: any[]): Promise<any>;
|
|
2845
2839
|
/**
|
|
2846
2840
|
* Returns the annual nominal interest rate.
|
|
2847
2841
|
*
|
|
@@ -3553,7 +3547,7 @@ export function RRI(nper: any, pv: any, fv: any): number | Error;
|
|
|
3553
3547
|
* @returns
|
|
3554
3548
|
*/
|
|
3555
3549
|
export function RSQ(known_y: any, known_x: any): number | Error;
|
|
3556
|
-
export function SAFE(
|
|
3550
|
+
export function SAFE(...args: any[]): Promise<any>;
|
|
3557
3551
|
/**
|
|
3558
3552
|
* Finds one text value within another (not case-sensitive)
|
|
3559
3553
|
*
|
|
@@ -3825,7 +3819,7 @@ export function SUBTOTAL(function_num: any, ref1: any): any;
|
|
|
3825
3819
|
*
|
|
3826
3820
|
* @returns
|
|
3827
3821
|
*/
|
|
3828
|
-
|
|
3822
|
+
declare function SUM$1(...args: any[]): number;
|
|
3829
3823
|
/**
|
|
3830
3824
|
* Adds the values specified by a given criteria.
|
|
3831
3825
|
*
|
|
@@ -3862,6 +3856,7 @@ export function SUMPRODUCT(...args: any[]): number | Error;
|
|
|
3862
3856
|
* @returns
|
|
3863
3857
|
*/
|
|
3864
3858
|
export function SUMSQ(...args: any[]): number | Error;
|
|
3859
|
+
export function SUMTEST(...args: any[]): number;
|
|
3865
3860
|
/**
|
|
3866
3861
|
* Returns the sum of the difference of squares of corresponding values in two arrays.
|
|
3867
3862
|
*
|
|
@@ -4615,4 +4610,4 @@ declare function formatDate(date: any): string;
|
|
|
4615
4610
|
declare function serialToDate(serial: any): Date;
|
|
4616
4611
|
declare function useDate(): void;
|
|
4617
4612
|
declare function useSerial(): void;
|
|
4618
|
-
export {};
|
|
4613
|
+
export { SUM$1 as SUM };
|