Flowdock
method

compact

Importance_1
v5.2.3 - 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  # => {}
{ c: true }.compact # => { c: true }
Show source
Register or log in to add new notes.