class SassC::Util::NormalizedMap

def normalize(key)

This can be overridden to create other normalization behaviors.
Specifies how to transform the key.
def normalize(key)
  key.tr("-", "_")
end