@fileverse-dev/formulajs 4.4.11-mod-36-patch-1 → 4.4.11-mod-36-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/cjs/index.cjs CHANGED
@@ -13317,7 +13317,7 @@ async function BLOCKSCOUT() {
13317
13317
  return 'TYPE_MISSING'
13318
13318
  }
13319
13319
 
13320
- const [address, type, chain, startTimestamp, endTimestamp, page, offset] = argsToArray(arguments);
13320
+ let [address, type, chain, startTimestamp, endTimestamp, page, offset] = argsToArray(arguments);
13321
13321
 
13322
13322
  if (!startTimestamp) {
13323
13323
  const currentTimestamp = Date.now();
@@ -13815,7 +13815,7 @@ async function SAFE() {
13815
13815
 
13816
13816
 
13817
13817
 
13818
- const [address, utility, chain, limit, offset] = argsToArray(arguments);
13818
+ let [address, utility, chain, limit, offset] = argsToArray(arguments);
13819
13819
 
13820
13820
  if (typeof limit !== 'number' || limit < 0) return 'INVALID_LIMIT';
13821
13821
  if (typeof offset !== 'number' || offset < 0) return 'INVALID_OFFSET';
package/lib/esm/index.mjs CHANGED
@@ -13315,7 +13315,7 @@ async function BLOCKSCOUT() {
13315
13315
  return 'TYPE_MISSING'
13316
13316
  }
13317
13317
 
13318
- const [address, type, chain, startTimestamp, endTimestamp, page, offset] = argsToArray(arguments);
13318
+ let [address, type, chain, startTimestamp, endTimestamp, page, offset] = argsToArray(arguments);
13319
13319
 
13320
13320
  if (!startTimestamp) {
13321
13321
  const currentTimestamp = Date.now();
@@ -13813,7 +13813,7 @@ async function SAFE() {
13813
13813
 
13814
13814
 
13815
13815
 
13816
- const [address, utility, chain, limit, offset] = argsToArray(arguments);
13816
+ let [address, utility, chain, limit, offset] = argsToArray(arguments);
13817
13817
 
13818
13818
  if (typeof limit !== 'number' || limit < 0) return 'INVALID_LIMIT';
13819
13819
  if (typeof offset !== 'number' || offset < 0) return 'INVALID_OFFSET';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-36-patch-1",
3
+ "version": "4.4.11-mod-36-patch-2",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {