class Primer::Classify::Utilities

def supported_value?(key, val)

returns Boolean

Does the Utility class support the given key and value
def supported_value?(key, val)
  supported_key?(key) && !UTILITIES[key][val].nil?
end