[].tap do |a|
a << :first if true
end
{}.tap do |h|
h[:first] = 1 if true
end
{
a: 'a',
b: ('b' if true)
}.compact
[1, 2, *(3 if true)]
[].tap do |a|
a << :first if true
end
{}.tap do |h|
h[:first] = 1 if true
end
{
a: 'a',
b: ('b' if true)
}.compact
[1, 2, *(3 if true)]
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)