No commit activity in last 3 years
No release in over 3 years
Removes recursively nil and empty elements from a hash
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
= 0.52.1
 Project Readme

EpicHashCleaner

Build Status

Removes recursively nil and empty elements from a hash

# Examples

EpicHashCleaner.clean { a: nil, b: '', c: [], d: {} }
# => {}

EpicHashCleaner.clean { a: false, b: ' ' }
# => { a: false }

EpicHashCleaner.clean { a: [nil], b: [nil, '', [{}], { a: [''] }] }
# => {}

EpicHashCleaner.clean { a: { b: { c: [{ d: ['', 1], e: nil }] } } }
# => { a: { b: { c: [{ d: [1] }] } } }

EpicHashCleaner.clean nil
# => {}

Installation

Add this line to your application's Gemfile:

gem 'epic_hash_cleaner'

And then execute:

$ bundle

Or install it yourself as:

$ gem install epic_hash_cleaner

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/i22-digitalagentur/epic-hash-cleaner

License

The gem is available as open source under the terms of the MIT License.