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
redashUuid4(uuid) {
let final = "";
for(var i = 0; i < uuid.length; i++){
if(i == 12 || i == 16 || i == 20){
final = final.concat('-')
}
final = final.concat(uuid.charAt(i))
}
return final;
},
The text was updated successfully, but these errors were encountered:
Would it be faster to do something like:
The text was updated successfully, but these errors were encountered: