Module: Imgproxy::OptionsCasters::Array

Defined in:
lib/imgproxy/options_casters/array.rb

Overview

Casts array option

Class Method Summary collapse

Class Method Details

.cast(raw) ⇒ Object



7
8
9
10
11
# File 'lib/imgproxy/options_casters/array.rb', line 7

def self.cast(raw)
  return if raw.nil?

  raw.is_a?(::Array) ? raw : [raw]
end