Module:Sandbox/ItamarWMDE/isHuman

From mediawiki.org
Module documentation
local p = {}
function p.check(frame)
	item = mw.wikibase.getEntity()
	if not item then
		return 'No Item'
	end
	return item
end
return p