Skip to content

Commit 27178b5

Browse files
committed
feat: utility methods to read/write files
1 parent a2f0637 commit 27178b5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

lua/lazy/util.lua

+14
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,20 @@ function M.open(uri)
2828
end
2929
end
3030

31+
function M.read_file(file)
32+
local fd = assert(io.open(file, "r"))
33+
---@type string
34+
local data = fd:read("*a")
35+
fd:close()
36+
return data
37+
end
38+
39+
function M.write_file(file, contents)
40+
local fd = assert(io.open(file, "w+"))
41+
fd:write(contents)
42+
fd:close()
43+
end
44+
3145
---@param ms number
3246
---@param fn fun()
3347
function M.throttle(ms, fn)

0 commit comments

Comments
 (0)