mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -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
|