farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
18 lines • 504 B
JavaScript
export function extractNumberFromLine(line, regex) {
const match = regex.exec(line);
if (!match?.length || !match[1])
return;
const found = +match[1].replaceAll(',', '');
if (isNaN(found))
return;
return found;
}
export function getNumberFromMatchingLine(lines, regex) {
for (const line of lines) {
const found = extractNumberFromLine(line, regex);
if (found)
return found;
}
return undefined;
}
//# sourceMappingURL=lore.js.map