debugger cleanup + ls now supports date

This commit is contained in:
kepler155c@gmail.com
2020-05-27 14:49:51 -06:00
parent 70001196cb
commit 8fef5d3580
5 changed files with 80 additions and 9 deletions

View File

@@ -65,4 +65,10 @@ return {
realPath = function(...) return ... end,
remove = function(a) fs.delete(a) return true end,
size = fs.getSize,
attributes = function(f)
local s, m = pcall(fs.attributes, f)
if s then
return m
end
end
}