Flowdock
method

compact

Importance_1
Ruby latest stable (v2_5_5) - 0 notes - Class: Hash
compact() public

Returns a new hash with the nil values/key pairs removed

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