इस मॉड्यूल हेतु प्रलेख मॉड्यूल:expensive function checker/doc पर बनाया जा सकता है
local export = {}
function export.check (frame)
local res = ""
if pcall(mw.incrementExpensiveFunctionCount) then
res = 'n'
else
res = 'y'
end
return res
end
return export