Update TypeScript to 4.6.2
This commit is contained in:
parent
71b2b6e30a
commit
e7b4b9015c
3 changed files with 10 additions and 9 deletions
|
@ -479,7 +479,7 @@ export function bytesToUuid(bytes: Uint8Array): undefined | UUIDStringType {
|
|||
}
|
||||
|
||||
export function splitUuids(buffer: Uint8Array): Array<UUIDStringType | null> {
|
||||
const uuids = [];
|
||||
const uuids = new Array<UUIDStringType | null>();
|
||||
for (let i = 0; i < buffer.byteLength; i += UUID_BYTE_SIZE) {
|
||||
const bytes = getBytes(buffer, i, UUID_BYTE_SIZE);
|
||||
const hex = Bytes.toHex(bytes);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue