Module:WikiFur

From WikiFur Data
Revision as of 14:39, 27 October 2023 by GreenReaper (talk | contribs) (+Label)
Jump to navigation Jump to search

Documentation for this module may be created at Module:WikiFur/doc

local p = {}

function p.ID()
  return mw.wikibase.getEntityIdForCurrentPage();
end

function p.Label(id)
  return mw.wikibase.getLabel(id);
end

return p;