summaryrefslogtreecommitdiff
path: root/.vscode/lua-plugin/example.lua
blob: 0432b16254d1aad1059659c21ec380c986e84b29 (plain)
1
2
3
4
5
6
function OnRequirePath(literal, raw)
    if type(literal) == 'string' then
        return literal
    end
    return raw:match '[^%.]+$'
end