UNPKG

farming-weight

Version:

Tools for calculating farming weight and fortune in Hypixel Skyblock

10 lines 261 B
export function extractNumberFromLine(line, regex) { const match = regex.exec(line); if (!match?.length || !match[1]) return; const found = +match[1]; if (isNaN(found)) return; return found; } //# sourceMappingURL=lore.js.map