module.exports = {
ApiUrl: 'http://localhost:4567',
FormatCurrency: function(amount_s) {
var amount = parseFloat(amount_s);
return ( amount.toFixed(2) + " KM" )
}
};