class Mustache::Context

def has_key?(key)

`context[key]` give us a result that was set. Basically.
Do we know about a particular key? In other words, will calling
def has_key?(key)
  fetch(key, false)
rescue ContextMiss
  false
end