8 lines
100 B
Lua
8 lines
100 B
Lua
local M = {}
|
|
|
|
function M.path_to_matching_str(path)
|
|
return path:gsub('(%-)', '%%-')
|
|
end
|
|
|
|
return M
|