Main public logs
Combined display of all available logs of Linguifex. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:24, 21 April 2026 Sware talk contribs created page Module:number utilities (Created page with "local export = {} function export.get_number(text) if text == '' or text == nil then return nil end if type(text) == 'string' then text = mw.ustring.gsub(text, ",", "") end local j = tonumber(text) if j ~= nil then return j else return nil end end function export.is_number(frame) return export.get_number(frame:getParent().args[1]) end function export.is_hex_number(frame) local args = frame:getParent().args local hex = args[1] if hex then hex = m...")