You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This problem caused by UVU_QUEUE[0] is not empty when exec is re-executed, so instead of for (let test of group) (code) by while (group.length > 0) { let test = group.shift()} is better choice.
name
which got fromlet name = group.shift()
is a function created byrunner.bind
, it had printed unexpected log in terminal. Location of these code is https://github.com/lukeed/uvu/blob/master/src/index.js#L138.mabe rewrite it to
if (typeof name === 'string') // xxxx
could solve this problem.The text was updated successfully, but these errors were encountered: