haml--haml/lib/sass/constant/string.rb

12 lines
141 B
Ruby
Raw Normal View History

module Sass::Constant
class String
def initialize(value)
@value = value
end
def to_s
@value
end
end
end