UNPKG

epicwar

Version:
18 lines (17 loc) 504 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getMapName = void 0; function getMapName(cells) { for (const cell of cells) { const urls = cell.getElementsByTagName('a'); for (const url of urls) { const { href } = url; if (!href.startsWith('/maps/download')) { continue; } return url.textContent.trim(); } } return 'NO_NAME_FOUND'; } exports.getMapName = getMapName;