1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-01 01:03:39 +00:00
This commit is contained in:
Bernd Schoolmann
2026-01-30 13:23:39 +01:00
parent 94aa277479
commit eb704a5709

View File

@@ -172,7 +172,7 @@ export class Utils {
* @returns The byte string representation, or null if the input is null.
*/
static fromArrayToByteString(arr: Uint8Array | null): string | null {
if (arr == null) {
if (arr == null) {
return null;
}