Module:FileExists: Difference between revisions

From EarthMC
Jump to navigation Jump to search
(Created page with "local p = {} function p.fileExists(filename) local title = mw.title.new(filename, 'File') if not title then return false end return title. Exists end return p")
(No difference)

Revision as of 14:21, 21 October 2023

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

local p = {}

function p.fileExists(filename)
    local title = mw.title.new(filename, 'File')
    if not title then
        return false
    end

    return title. Exists
end

return p