Skip to content

Commit f08a2ae

Browse files
committed
chore: update
1 parent 66d554c commit f08a2ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Node.js
4545
uses: actions/setup-node@v3
4646
with:
47-
node-version: 19
47+
node-version: 24
4848

4949
- name: Yarn
5050
run: yarn install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Node.js
3939
uses: actions/setup-node@v3
4040
with:
41-
node-version: 19
41+
node-version: 24
4242

4343
- name: Yarn
4444
run: yarn install --frozen-lockfile

src/qr-js/qr-bit-buffer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ QrBitBuffer.prototype = {
2020
},
2121

2222
putBit: function (bit) {
23-
var bufIndex = Math.floor(this.length / 8)
23+
const bufIndex = Math.floor(this.length / 8)
2424
if (this.buffer.length <= bufIndex) {
2525
this.buffer.push(0)
2626
}

0 commit comments

Comments
 (0)