mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-18 03:19:13 +00:00
linting
This commit is contained in:
@@ -332,8 +332,8 @@ function getArea(
|
||||
visited: Set<string>,
|
||||
targetType: TerrainType,
|
||||
) {
|
||||
let area = [];
|
||||
let next = [[x, y]];
|
||||
const area = [];
|
||||
const next = [[x, y]];
|
||||
while (next.length) {
|
||||
const [x, y] = next.pop();
|
||||
const key = `${x},${y}`;
|
||||
|
||||
Reference in New Issue
Block a user