1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/assets/javascripts/services/helpers.js

16 lines
420 B
JavaScript

/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
'use strict';
Application.Services.factory('helpers', [()=>
({
getAmountToPay(price, walletAmount){
if (walletAmount > price) { return 0; } else { return price - walletAmount; }
}
})
]);