মডিউল:No globals: সংশোধিত সংস্করণের মধ্যে পার্থক্য
অবয়ব
"local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then -- perf optimization here and below: do not load Module:TNT unless there is an error error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) end rawset(t, k, v) end setmetatable(..." দিয়ে পাতা তৈরি |
খাত্তাব হাসান (আলোচনা | অবদান) অ ১টি সংস্করণ আমদানি করা হয়েছে: পুরাতন উইকি থেকে আমদানি |
(কোনও পার্থক্য নেই)
| |
১৬:৪২, ১২ ডিসেম্বর ২০২৫ তারিখে সম্পাদিত সর্বশেষ সংস্করণ
এই মডিউলের জন্য মডিউল:No globals/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে
local mt = getmetatable(_G) or {}
function mt.__index (t, k)
if k ~= 'arg' then
-- perf optimization here and below: do not load Module:TNT unless there is an error
error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2)
end
return nil
end
function mt.__newindex(t, k, v)
if k ~= 'arg' then
error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2)
end
rawset(t, k, v)
end
setmetatable(_G, mt)