mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
11 lines
141 B
Ruby
11 lines
141 B
Ruby
module Sass::Constant
|
|
class String
|
|
def initialize(value)
|
|
@value = value
|
|
end
|
|
|
|
def to_s
|
|
@value
|
|
end
|
|
end
|
|
end
|