# File lib/merb-core/core_ext/mash.rb, line 12
  def initialize(constructor = {})
    if constructor.is_a?(Hash) 
      super() 
      update(constructor) 
    else 
      super(constructor) 
    end 
  end