mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
eslint: const for never-changed-vars
This commit is contained in:
parent
7936d2336b
commit
b9d1bd187e
1 changed files with 3 additions and 3 deletions
|
@ -550,9 +550,9 @@ TOKEN_TYPES.gallery = function(token, createElement, ctx) {
|
|||
if ( ! Array.isArray(token.items) || ! token.items.length )
|
||||
return null;
|
||||
|
||||
let first_column = [],
|
||||
second_column = [],
|
||||
first = true,
|
||||
const first_column = [],
|
||||
second_column = [];
|
||||
let first = true,
|
||||
i = 0;
|
||||
|
||||
for(const item of token.items) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue