@fileverse-dev/formulajs 4.4.11-mod-83 → 4.4.11-mod-83-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 +1836 -1837
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +992 -999
- package/lib/esm/crypto-constants.mjs +654 -821
- package/lib/esm/index.mjs +992 -999
- package/package.json +2 -2
- 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-83",
|
|
3
|
+
"version": "4.4.11-mod-83-patch-2",
|
|
4
4
|
"description": "JavaScript implementation of most Microsoft Excel formula functions",
|
|
5
5
|
"author": "Formulajs",
|
|
6
6
|
"publishConfig": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"test:coverage": "c8 mocha --recursive",
|
|
58
58
|
"test:watch": "mocha --recursive --watch --parallel --reporter min",
|
|
59
59
|
"types": "tsc",
|
|
60
|
-
"test:crypto": "npx mocha 'test/crypto
|
|
60
|
+
"test:crypto": "npx mocha 'test/crypto/*.test.js' --recursive",
|
|
61
61
|
"prepare": "husky install"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
package/types/cjs/index.d.cts
CHANGED
|
@@ -1589,8 +1589,6 @@ export namespace FINV { }
|
|
|
1589
1589
|
*/
|
|
1590
1590
|
export function FINVRT(probability: any, deg_freedom1: any, deg_freedom2: any, ...args: any[]): any;
|
|
1591
1591
|
export function FIREFLY(...args: any[]): Promise<{
|
|
1592
|
-
platform: any;
|
|
1593
|
-
}[] | {
|
|
1594
1592
|
message: string;
|
|
1595
1593
|
functionName: any;
|
|
1596
1594
|
type: string;
|
|
@@ -1608,7 +1606,9 @@ export function FIREFLY(...args: any[]): Promise<{
|
|
|
1608
1606
|
type: string;
|
|
1609
1607
|
reason: any;
|
|
1610
1608
|
apiKeyName?: undefined;
|
|
1611
|
-
}
|
|
1609
|
+
} | {
|
|
1610
|
+
platform: any;
|
|
1611
|
+
}[]>;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* Returns the Fisher transformation.
|
|
1614
1614
|
*
|
|
@@ -1692,7 +1692,7 @@ export function FLOORMATH(number: any, significance?: any, mode?: any): any;
|
|
|
1692
1692
|
* @returns
|
|
1693
1693
|
*/
|
|
1694
1694
|
export function FLOORPRECISE(number: any, significance: any): any;
|
|
1695
|
-
export function FLVURL(
|
|
1695
|
+
export function FLVURL(): Promise<any>;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* Returns a value along a linear trend.
|
|
1698
1698
|
*
|
package/types/esm/index.d.mts
CHANGED
|
@@ -1589,8 +1589,6 @@ export namespace FINV { }
|
|
|
1589
1589
|
*/
|
|
1590
1590
|
export function FINVRT(probability: any, deg_freedom1: any, deg_freedom2: any, ...args: any[]): any;
|
|
1591
1591
|
export function FIREFLY(...args: any[]): Promise<{
|
|
1592
|
-
platform: any;
|
|
1593
|
-
}[] | {
|
|
1594
1592
|
message: string;
|
|
1595
1593
|
functionName: any;
|
|
1596
1594
|
type: string;
|
|
@@ -1608,7 +1606,9 @@ export function FIREFLY(...args: any[]): Promise<{
|
|
|
1608
1606
|
type: string;
|
|
1609
1607
|
reason: any;
|
|
1610
1608
|
apiKeyName?: undefined;
|
|
1611
|
-
}
|
|
1609
|
+
} | {
|
|
1610
|
+
platform: any;
|
|
1611
|
+
}[]>;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* Returns the Fisher transformation.
|
|
1614
1614
|
*
|
|
@@ -1692,7 +1692,7 @@ export function FLOORMATH(number: any, significance?: any, mode?: any): any;
|
|
|
1692
1692
|
* @returns
|
|
1693
1693
|
*/
|
|
1694
1694
|
export function FLOORPRECISE(number: any, significance: any): any;
|
|
1695
|
-
export function FLVURL(
|
|
1695
|
+
export function FLVURL(): Promise<any>;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* Returns a value along a linear trend.
|
|
1698
1698
|
*
|