mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
13 lines
226 B
Ruby
13 lines
226 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ArrayMonkeyPatches
|
|
def average
|
|
sum.to_f / size
|
|
end
|
|
|
|
def remove_blanks
|
|
reject { |item| item.nil? || item.to_f.nan? || item.zero? }
|
|
end
|
|
end
|
|
|
|
Array.include ArrayMonkeyPatches
|