Skip to content

Commit 51848ac

Browse files
committed
chore: update
1 parent a6697c2 commit 51848ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qr-js/qr-math.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
const QRMath = {
2-
glog: function (n) {
2+
glog: function (n: number) {
33
if (n < 1) {
44
throw new Error('glog(' + n + ')')
55
}
66

77
return QRMath.LOG_TABLE[n]
88
},
99

10-
gexp: function (n) {
10+
gexp: function (n: number) {
1111
while (n < 0) {
1212
n += 255
1313
}

0 commit comments

Comments
 (0)