We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d554c commit f08a2aeCopy full SHA for f08a2ae
.github/workflows/ci.yml
@@ -44,7 +44,7 @@ jobs:
44
- name: Setup Node.js
45
uses: actions/setup-node@v3
46
with:
47
- node-version: 19
+ node-version: 24
48
49
- name: Yarn
50
run: yarn install --frozen-lockfile
.github/workflows/release.yml
@@ -38,7 +38,7 @@ jobs:
38
39
40
41
42
43
src/qr-js/qr-bit-buffer.ts
@@ -20,7 +20,7 @@ QrBitBuffer.prototype = {
20
},
21
22
putBit: function (bit) {
23
- var bufIndex = Math.floor(this.length / 8)
+ const bufIndex = Math.floor(this.length / 8)
24
if (this.buffer.length <= bufIndex) {
25
this.buffer.push(0)
26
}
0 commit comments