return statement

pull/129/head
Ludea 2 years ago committed by GitHub
parent a094c6aaf0
commit 5ff304d9a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -300,10 +300,10 @@ export class Store {
key: toBytesDto(key), key: toBytesDto(key),
}).then((v) => { }).then((v) => {
if (v !== null || undefined) { if (v !== null || undefined) {
Uint8Array.from(v) return Uint8Array.from(v);
} }
else { else {
null return null;
} }
}) })
} }

Loading…
Cancel
Save