mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
13 lines
216 B
Ruby
13 lines
216 B
Ruby
module Sass::Constant
|
|
class Number
|
|
def initialize(value)
|
|
value = value.to_f
|
|
value = value.to_i if value % 1 == 0.0
|
|
@value = value
|
|
end
|
|
|
|
def to_s
|
|
@value.to_s
|
|
end
|
|
end
|
|
end
|