@fileverse-dev/formulajs 4.4.11-mod-38-patch-001 → 4.4.11-mod-38-patch-003

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/cjs/index.cjs CHANGED
@@ -13310,9 +13310,12 @@ async function FIREFLY() {
13310
13310
 
13311
13311
  function BLOCKSCOUT () {
13312
13312
  console.log("HUMBLE");
13313
- let data = argsToArray(arguments);
13313
+ let args = argsToArray(arguments);
13314
13314
 
13315
- return _BLOCKSCOUT(...data)
13315
+ return {
13316
+ args,
13317
+ name: "_BLOCKSCOUT"
13318
+ }
13316
13319
  }
13317
13320
 
13318
13321
 
package/lib/esm/index.mjs CHANGED
@@ -13308,9 +13308,12 @@ async function FIREFLY() {
13308
13308
 
13309
13309
  function BLOCKSCOUT () {
13310
13310
  console.log("HUMBLE");
13311
- let data = argsToArray(arguments);
13311
+ let args = argsToArray(arguments);
13312
13312
 
13313
- return _BLOCKSCOUT(...data)
13313
+ return {
13314
+ args,
13315
+ name: "_BLOCKSCOUT"
13316
+ }
13314
13317
  }
13315
13318
 
13316
13319
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-38-patch-001",
3
+ "version": "4.4.11-mod-38-patch-003",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {
@@ -420,7 +420,10 @@ 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(...args: any[]): Promise<any>;
423
+ export function BLOCKSCOUT(...args: any[]): {
424
+ args: any[];
425
+ name: string;
426
+ };
424
427
  /**
425
428
  * Rounds a number to the nearest integer or to the nearest multiple of significance.
426
429
  *
@@ -420,7 +420,10 @@ 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(...args: any[]): Promise<any>;
423
+ export function BLOCKSCOUT(...args: any[]): {
424
+ args: any[];
425
+ name: string;
426
+ };
424
427
  /**
425
428
  * Rounds a number to the nearest integer or to the nearest multiple of significance.
426
429
  *