Difference between revisions of "Module:WD"

From blackwiki
Jump to navigation Jump to search
blackwiki>Thayts
(Making a "redirect" to Module:Wd; is there a better way to do this?)
 
blackwiki>Thayts
Line 3: Line 3:
  
 
p.property = function(frame)
 
p.property = function(frame)
return q:property(frame)
+
return q.p:property(frame)
 
end
 
end
  
 
p.qualifier = function(frame)
 
p.qualifier = function(frame)
return q:qualifier(frame)
+
return q.p:qualifier(frame)
 
end
 
end
  
 
p.label = function(frame)
 
p.label = function(frame)
return q:label(frame)
+
return q.p:label(frame)
 
end
 
end

Revision as of 20:37, 20 August 2016

This module is an alias for Module:Wd. Please don't make any changes to this module.


local q = require('Module:Wd')
local p = {}

p.property = function(frame)
	return q.p:property(frame)
end

p.qualifier = function(frame)
	return q.p:qualifier(frame)
end

p.label = function(frame)
	return q.p:label(frame)
end