Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Fix] switch to hex
  • Loading branch information
jtenner committed Aug 6, 2019
commit 628562ca10599c80aa75d06b1c8abfc2a051c04e
2 changes: 1 addition & 1 deletion assembly/buffer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export class Buffer extends Uint8Array {
if (i == (maxBytes - 1)) {
Comment thread
jtenner marked this conversation as resolved.
Outdated
if (elipsisEnd) {
// make this a single 64 bit store
store<u64>(writeOffset, <u64>17451646127570990, 4); // "...>"
store<u64>(writeOffset, <u64>0x003e_002e_002e_002e, 4); // "...>"
} else {
store<u16>(writeOffset, <u16>62, 4); // ">"
}
Expand Down