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
functionconvertKeyValueArrayToBase64(keyValueArrayasObject)asStringbinaryByte=""ba=createObject("roByteArray")topIndex=getLastIndex(keyValueArray)fori=0totopIndexitem=keyValueArray[i]ifgetBooleanAtKeyPath(item,"value")thenbinaryByte=binaryByte+"1"elsebinaryByte=binaryByte+"0"endififi=topIndexthen' NOTE!!! THIS is opposite of updateKeyValueArrayFromBase64String() on purposebinaryByte=binaryByte+string(8-binaryByte.len(),"0")endififbinaryByte.len()=8ORi=topIndexthenba.push(val(binaryByte,2))binaryByte=""endifendforbase64String=ba.toBase64String()returnbase64Stringendfunction
In the above function the binaryByte = "" near the end of the loop is getting flagged with the following:
The same thing can be see in this code with focusedChild in the while loop
In the above function the
binaryByte = ""
near the end of the loop is getting flagged with the following:The same thing can be see in this code with
focusedChild
in thewhile
loopThe text was updated successfully, but these errors were encountered: