Files
old-ribica/front-ui/app/globals.js
2015-02-14 07:54:10 +01:00

8 lines
188 B
JavaScript

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