:back: backport_dig is the backport of Hash#dig, Array#dig and OpenStruct#dig in Ruby 2.3 to older Ruby versions.
backport_dig is the backport of Hash#dig, Array#dig and OpenStruct#dig in Ruby 2.3 to older Ruby versions.
The best way is to use Ruby 2.3 or later. Because you can use original dig methods and so on.
Add these lines to your application’s Gemfile:
gem 'backport_dig'
And then execute:
$ bundle
Or install it yourself as:
$ gem install backport_dig
And require it as:
require 'backport_dig'
h = {foo: {bar: {baz: 1}}}
h.dig(:foo, :bar, :baz) #=> 1
a = [[1, [2, 3]]]
a.dig(0, 1, 1) #=> 3
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)backport_dig is released under the MIT License.