Bump deps (minor) (#410)

This commit is contained in:
Jaco Greeff
2020-12-05 10:56:37 +01:00
committed by GitHub
parent 4a79ef073c
commit b705f2bed1
7 changed files with 148 additions and 158 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ const TIMER_INC = 500;
function getDataUrl (value: Uint8Array): string {
const qr = qrcode(0, 'M');
// HACK See out qrcode stringToBytes override as used internally. This
// will only work for the case where we actuall pass `Bytes` in here
// HACK See our qrcode stringToBytes override as used internally. This
// will only work for the case where we actually pass `Bytes` in here
// eslint-disable-next-line @typescript-eslint/no-explicit-any
qr.addData(value as any, 'Byte');
qr.make();