#182 support for MySQL binary keys

This commit is contained in:
Jan Prochazka
2021-10-17 10:24:31 +02:00
parent 30cbcd5ce0
commit 2231bc21cd
6 changed files with 28 additions and 16 deletions

View File

@@ -0,0 +1,3 @@
export function toHexString(byteArray) {
return byteArray.reduce((output, elem) => output + ('0' + elem.toString(16)).slice(-2), '');
}