@fileverse-dev/formulajs 4.4.11-mod-69 → 4.4.11-mod-70
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
|
@@ -13325,7 +13325,7 @@ async function handleScanRequest({
|
|
|
13325
13325
|
throw new RateLimitError(apiInfo.apiKeyName)
|
|
13326
13326
|
}
|
|
13327
13327
|
|
|
13328
|
-
return json.result
|
|
13328
|
+
return type === 'gas' ? [json.result] : json.result
|
|
13329
13329
|
}
|
|
13330
13330
|
|
|
13331
13331
|
const fromUsernameToFid = async (username, apiKey) => {
|
package/lib/esm/index.mjs
CHANGED
|
@@ -13323,7 +13323,7 @@ async function handleScanRequest({
|
|
|
13323
13323
|
throw new RateLimitError(apiInfo.apiKeyName)
|
|
13324
13324
|
}
|
|
13325
13325
|
|
|
13326
|
-
return json.result
|
|
13326
|
+
return type === 'gas' ? [json.result] : json.result
|
|
13327
13327
|
}
|
|
13328
13328
|
|
|
13329
13329
|
const fromUsernameToFid = async (username, apiKey) => {
|