Flowdock
method

compact

Importance_1
v4.2.9 - Show latest stable - 0 notes - Class: Hash
compact() public

Returns a hash with non nil values.

hash = { a: true, b: false, c: nil}
hash.compact # => { a: true, b: false}
hash # => { a: true, b: false, c: nil}
{ c: nil }.compact # => {}
Show source
Register or log in to add new notes.