ut-function.currency
v1.2.3
Published
Currency helper functions
Downloads
22
Readme
ut-function.currency
Usage
const curFun = require('ut-function.currency');
const deps = {
errors: {
'currency.invalidCurrency': (args) => {
throw new Error('.....');
},
'currency.invalidAmount': (args) => {
throw new Error('.....');
}
}
};
const currency = curFun(deps);