module WolfCore::ArrayUtils

def first_or_self(input)

def first_or_self(input)
  input.is_a?(Array) ? input.first : input
end