1
0
Fork 0
mirror of https://github.com/internetee/registry.git synced 2025-08-16 22:43:50 +02:00
internetee-registry/lib/core_monkey_patches/array.rb
2019-11-02 17:06:00 +02:00

5 lines
71 B
Ruby

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