We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20aa2d4 commit ea9d591Copy full SHA for ea9d591
src/binary.ts
@@ -487,8 +487,7 @@ export class UUID extends Binary {
487
488
/** Creates an UUID from a base64 string representation of an UUID. */
489
static override createFromBase64(base64: string): UUID {
490
- const bytes = ByteUtils.fromBase64(base64);
491
- return new UUID(bytes);
+ return new UUID(ByteUtils.fromBase64(base64));
492
}
493
494
/**
0 commit comments