5 lines
102 B
Ruby
5 lines
102 B
Ruby
class NumberService
|
|
def self.to_number string
|
|
string.to_s if Float(string) rescue nil
|
|
end
|
|
end
|