@fileverse-dev/formulajs 4.4.11-mod-38-patch-3 → 4.4.11-mod-38-patch-5
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 +53 -51
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +2 -0
- package/lib/esm/crypto-constants.mjs +14 -50
- package/lib/esm/index.mjs +2 -0
- package/package.json +1 -1
package/lib/cjs/index.cjs
CHANGED
|
@@ -13247,6 +13247,7 @@ async function SUMTEST() {
|
|
|
13247
13247
|
let result = 0;
|
|
13248
13248
|
|
|
13249
13249
|
arrayEach(argsToArray(arguments), (value) => {
|
|
13250
|
+
console.log("callllllling teeeessssst");
|
|
13250
13251
|
if (result instanceof Error) {
|
|
13251
13252
|
return false
|
|
13252
13253
|
} else if (value instanceof Error) {
|
|
@@ -13697,6 +13698,7 @@ async function COINGECKO() {
|
|
|
13697
13698
|
|
|
13698
13699
|
|
|
13699
13700
|
async function EOA() {
|
|
13701
|
+
console.log("callllllling EOOOOOOOAAAAAAA");
|
|
13700
13702
|
|
|
13701
13703
|
|
|
13702
13704
|
|
|
@@ -392,63 +392,27 @@ var FUNCTION_LOCALE = [
|
|
|
392
392
|
]
|
|
393
393
|
},
|
|
394
394
|
{
|
|
395
|
-
API_KEY: SERVICE_API_KEY.Etherscan,
|
|
396
|
-
LOGO: "https://etherscan.io/images/favicon3.ico",
|
|
397
|
-
BRAND_COLOR: "#F6F7F8",
|
|
398
|
-
BRAND_SECONDARY_COLOR: "#21325B",
|
|
399
395
|
n: "EOA",
|
|
400
|
-
t:
|
|
401
|
-
d: "
|
|
402
|
-
a: "
|
|
396
|
+
t: 0,
|
|
397
|
+
d: "Returns the sum of a series of numbers and/or cells.",
|
|
398
|
+
a: "Sum of a series of numbers and/or cells.",
|
|
399
|
+
m: [1, 255],
|
|
403
400
|
p: [
|
|
404
401
|
{
|
|
405
|
-
name: "
|
|
406
|
-
detail: "
|
|
407
|
-
example:
|
|
408
|
-
require: "m",
|
|
409
|
-
type: "string"
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
name: "categories",
|
|
413
|
-
detail: `Type of data to fetch. Supported values: "txns", "balance".`,
|
|
414
|
-
example: `"txns"`,
|
|
415
|
-
require: "m",
|
|
416
|
-
type: "string"
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
name: "chain",
|
|
420
|
-
detail: `Blockchain network(s) to query. Supported values: "ethereum", "gnosis", "base". Accepts comma-separated values.`,
|
|
421
|
-
example: `"ethereum"`,
|
|
422
|
-
require: "m",
|
|
423
|
-
type: "string"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
name: "startTime",
|
|
427
|
-
detail: "Used to calculate starting block for transaction queries.",
|
|
428
|
-
example: `"01/01/2024"`,
|
|
429
|
-
require: "m",
|
|
430
|
-
type: "string"
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
name: "endTime",
|
|
434
|
-
detail: "Used to calculate ending block for transaction queries.",
|
|
435
|
-
example: `"01/06/2024"`,
|
|
402
|
+
name: "value1",
|
|
403
|
+
detail: "The first number or range to add together.",
|
|
404
|
+
example: "A2:A100",
|
|
436
405
|
require: "m",
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
{
|
|
440
|
-
name: "page",
|
|
441
|
-
detail: "The page number for paginated transaction results. Only used when category is 'txns'. Default is 1",
|
|
442
|
-
example: "1",
|
|
443
|
-
require: "o",
|
|
444
|
-
type: "number"
|
|
406
|
+
repeat: "n",
|
|
407
|
+
type: "rangeall"
|
|
445
408
|
},
|
|
446
409
|
{
|
|
447
|
-
name: "
|
|
448
|
-
detail: "
|
|
449
|
-
example: "
|
|
410
|
+
name: "value2",
|
|
411
|
+
detail: "Additional numbers or ranges to add to `value1`.",
|
|
412
|
+
example: "2",
|
|
450
413
|
require: "o",
|
|
451
|
-
|
|
414
|
+
repeat: "y",
|
|
415
|
+
type: "rangeall"
|
|
452
416
|
}
|
|
453
417
|
]
|
|
454
418
|
},
|
package/lib/esm/index.mjs
CHANGED
|
@@ -13245,6 +13245,7 @@ async function SUMTEST() {
|
|
|
13245
13245
|
let result = 0;
|
|
13246
13246
|
|
|
13247
13247
|
arrayEach(argsToArray(arguments), (value) => {
|
|
13248
|
+
console.log("callllllling teeeessssst");
|
|
13248
13249
|
if (result instanceof Error) {
|
|
13249
13250
|
return false
|
|
13250
13251
|
} else if (value instanceof Error) {
|
|
@@ -13695,6 +13696,7 @@ async function COINGECKO() {
|
|
|
13695
13696
|
|
|
13696
13697
|
|
|
13697
13698
|
async function EOA() {
|
|
13699
|
+
console.log("callllllling EOOOOOOOAAAAAAA");
|
|
13698
13700
|
|
|
13699
13701
|
|
|
13700
13702
|
|
package/package.json
CHANGED