mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Refactor arg_array
This commit is contained in:
parent
2490833b6b
commit
0ed3e5d547
1 changed files with 2 additions and 3 deletions
|
@ -388,9 +388,8 @@ end
|
|||
|
||||
def arg_array(array)
|
||||
args = [] of String
|
||||
(1..array.size).each { |i| args << "($#{i})," }
|
||||
args = args.join("")
|
||||
args = args.chomp(",")
|
||||
(1..array.size).each { |i| args << "($#{i})" }
|
||||
args = args.join(",")
|
||||
|
||||
return args
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue