mirror of
https://github.com/ivuorinen/homebrew-tap.git
synced 2026-03-13 02:00:48 +00:00
11 lines
273 B
Ruby
11 lines
273 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
# Simple polyfill for Homebrew extensions
|
|
class String
|
|
def blank?
|
|
# Polyfill implementation to avoid external dependencies
|
|
nil? || empty? # rubocop:disable Homebrew/Blank, Lint/RedundantCopDisableDirective
|
|
end
|
|
end
|