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

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