File tree 1 file changed +10
-11
lines changed
1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -3,23 +3,22 @@ local M = {}
3
3
--- @type table<string , string>
4
4
local mapping = nil
5
5
6
- local function _load ()
7
- if mapping then
8
- return
9
- end
10
- mapping = {}
11
- --- @type { name : string , url : string , version : string } []
12
- local gen = require (" lazy.community._generated" )
13
- for _ , rock in ipairs (gen ) do
14
- mapping [rock .name ] = rock .url
6
+ local function load ()
7
+ if not mapping then
8
+ mapping = {}
9
+ --- @type { name : string , url : string , version : string } []
10
+ local gen = require (" lazy.community._generated" )
11
+ for _ , rock in ipairs (gen ) do
12
+ mapping [rock .name ] = rock .url
13
+ end
15
14
end
15
+ return mapping
16
16
end
17
17
18
18
--- @param rock string
19
19
--- @return string ?
20
20
function M .get_url (rock )
21
- _load ()
22
- return mapping [rock ]
21
+ return load ()[rock ]
23
22
end
24
23
25
24
return M
You can’t perform that action at this time.
0 commit comments