mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-03 01:28:30 +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 )
|
if ( ! Array.isArray(token.items) || ! token.items.length )
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
let first_column = [],
|
const first_column = [],
|
||||||
second_column = [],
|
second_column = [];
|
||||||
first = true,
|
let first = true,
|
||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
for(const item of token.items) {
|
for(const item of token.items) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue