testilo 25.0.1 → 25.0.3
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/call.js +1 -7
- package/package.json +2 -2
package/call.js
CHANGED
|
@@ -242,13 +242,7 @@ const callCredit = async (tallyID, selector = '') => {
|
|
|
242
242
|
// ########## OPERATION
|
|
243
243
|
|
|
244
244
|
// Execute the requested function.
|
|
245
|
-
if (fn === '
|
|
246
|
-
callAim(... fnArgs)
|
|
247
|
-
.then(() => {
|
|
248
|
-
console.log('Execution completed');
|
|
249
|
-
});
|
|
250
|
-
}
|
|
251
|
-
else if (fn === 'batch' && fnArgs.length === 2) {
|
|
245
|
+
if (fn === 'batch' && fnArgs.length === 2) {
|
|
252
246
|
callBatch(... fnArgs)
|
|
253
247
|
.then(() => {
|
|
254
248
|
console.log('Execution completed');
|
package/package.json
CHANGED