class DataMaps::Converter::String

Converts numeric values

@since 0.0.1

Public Instance Methods

execute(data) click to toggle source

The execute method to convert the given data into string

@param [mixed] data

# File lib/data_maps/converter/string.rb, line 10
def execute(data)
  data.to_s
end