Module:expensive function checker

From Wiktionary, the free dictionary
Jump to navigation Jump to search

local export = {}

function export.check (frame)

    local res = ""

    if pcall(mw.incrementExpensiveFunctionCount) then
        res = 'n'
    else
        res = 'y'
    end

    return res

end

return export