crosstable.love/0022-absolutize

6 lines
112 B
Plaintext
Raw Normal View History

2023-10-17 23:34:12 +01:00
absolutize = function(path)
if is_relative_path(path) then
return App.current_dir..path
end
return path
end