class Sass::Script::Tree::Node

def dasherize(s, opts)

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