Module: Polyfill::V2_4::MatchData::Instance::NamedCaptures::Method

Defined in:
lib/polyfill/v2_4/match_data/instance/named_captures.rb

Instance Method Summary collapse

Instance Method Details

#named_capturesObject



7
8
9
10
11
# File 'lib/polyfill/v2_4/match_data/instance/named_captures.rb', line 7

def named_captures
  names.each_with_object({}) do |name, acc|
    acc[name] = self[name]
  end
end