Module: Jekyll::HashToArray

Defined in:
jekyll/_plugins/hash-to-array.rb

Instance Method Summary collapse

Instance Method Details

#hash2array(input) ⇒ Object



14
15
16
17
18
19
20
21
# File 'jekyll/_plugins/hash-to-array.rb', line 14

def hash2array(input)
  return input unless input.is_a?(Hash)
  #input.values.to_a
        input.map do |key, value| 
          value['hash_key'] = key
          value
        end
end