internetee-registry/lib/core_ext/array.rb
2018-06-06 03:20:25 +03:00

5 lines
No EOL
70 B
Ruby

class Array
def include_any?(*args)
(self & args).any?
end
end