Method: Primer::Classify::Utilities.supported_value?
- Defined in:
- lib/primer/classify/utilities.rb
.supported_value?(key, val) ⇒ Boolean
Does the Utility class support the given key and value
returns Boolean
64 65 66 |
# File 'lib/primer/classify/utilities.rb', line 64 def supported_value?(key, val) supported_key?(key) && !UTILITIES[key][val].nil? end |