class Sass::Script::Node

def dasherize(s, opts)

Converts underscores to dashes if the :dasherize option is set.
def dasherize(s, opts)
  if opts[:dasherize]
    s.gsub(/_/,'-')
  else
    s
  end
end