Method: Primer::Classify::Utilities.mappings
- Defined in:
- lib/primer/classify/utilities.rb
.mappings(key) ⇒ Object
Get the options for the given key
returns Array or nil if key not supported
88 89 90 91 92 |
# File 'lib/primer/classify/utilities.rb', line 88 def mappings(key) return unless supported_key?(key) UTILITIES[key].keys end |