client-side-assembler
main
@@ -1136,10 +1136,10 @@ export class Assembler {
}
le(value, count) {
let bytes = []
const bytes = []
while (value != 0) {
bytes.push(value & 0xff);
value >>= 8;
value >>>= 8;
if (count != undefined) {
while (bytes.length < count)
The note is not visible to the blocked user.