Module:NUMBEROF

This is an old revision of this page, as edited by GreenC (talk | contribs) at 15:56, 2 May 2020. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.numberof(frame)
	local result = 0
	local data = mw.ext.data.get("Wikipedia_statistics/data.tab")
	for k,v in pairs(data['data']) do
		result = k
	end
	return result
end

return p