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

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
@@ -13312,7 +13312,7 @@ function BLOCKSCOUT () {
13312
13312
  console.log("HUMBLE");
13313
13313
  let data = argsToArray(arguments);
13314
13314
 
13315
- return _BLOCKSCOUT(...data)
13315
+ return (context) => _BLOCKSCOUT(...data).then(() => console.log({context}))
13316
13316
  }
13317
13317
 
13318
13318
 
package/lib/esm/index.mjs CHANGED
@@ -13310,7 +13310,7 @@ function BLOCKSCOUT () {
13310
13310
  console.log("HUMBLE");
13311
13311
  let data = argsToArray(arguments);
13312
13312
 
13313
- return _BLOCKSCOUT(...data)
13313
+ return (context) => _BLOCKSCOUT(...data).then(() => console.log({context}))
13314
13314
  }
13315
13315
 
13316
13316
 
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-002",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {
@@ -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(...args: any[]): Promise<any>;
423
+ export function BLOCKSCOUT(...args: any[]): (context: any) => Promise<void>;
424
424
  /**
425
425
  * Rounds a number to the nearest integer or to the nearest multiple of significance.
426
426
  *
@@ -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(...args: any[]): Promise<any>;
423
+ export function BLOCKSCOUT(...args: any[]): (context: any) => Promise<void>;
424
424
  /**
425
425
  * Rounds a number to the nearest integer or to the nearest multiple of significance.
426
426
  *