mirror of
https://github.com/ivuorinen/homebrew-tap.git
synced 2026-03-13 01:00:44 +00:00
10 lines
152 B
Ruby
10 lines
152 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
# Simple polyfill for Homebrew extensions
|
|
class Array
|
|
def exclude?(item)
|
|
!include?(item)
|
|
end
|
|
end
|