Module:Sandbox/ItamarWMDE/isHuman

From Bonkipedia
< Module:Sandbox
Revision as of 11:13, 11 September 2020 by [[mw:]]>ItamarWMDE
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/ItamarWMDE/isHuman/doc

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