Module:Sandbox/ItamarWMDE/isHuman

From Bonkipedia
< Module:Sandbox
Revision as of 18:20, 12 November 2022 by ManfredoDo (talk | contribs) (1 revision imported: Module Import)
(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