Модуль:JsonPaths

Материал из Space Station 14 Вики
Версия от 10:51, 17 июля 2025; Pok (обсуждение | вклад) (Новая страница: «local p = {} function p.get(rel, BD) if type(rel) ~= "string" or rel == "" then return "" end if (not BD or BD == "") and mw.getCurrentFrame then local frame = mw.getCurrentFrame() BD = (frame.args and frame.args.BD) or "" end local prefix = "Module:IanComradeBot/" if BD and BD ~= "" then prefix = prefix .. BD .. "/" end return prefix .. rel .. "/data" end return p»)

(разн.) ← Предыдущая версия | Подтверждённая версия (разн.) | Текущая версия (разн.) | Следующая версия → (разн.)

Для документации этого модуля может быть создана страница Модуль:JsonPaths/doc

local p = {}

function p.get(rel, BD)
    if type(rel) ~= "string" or rel == "" then
        return ""
    end

    if (not BD or BD == "") and mw.getCurrentFrame then
        local frame = mw.getCurrentFrame()
        BD = (frame.args and frame.args.BD) or ""
    end

    local prefix = "Module:IanComradeBot/"
    if BD and BD ~= "" then
        prefix = prefix .. BD .. "/"
    end

    return prefix .. rel .. "/data"
end

return p