salix-front/src/filters/index.js

12 lines
230 B
JavaScript
Raw Normal View History

2022-03-24 15:49:33 +00:00
import toLowerCase from './toLowerCase';
2022-10-17 14:23:19 +00:00
import toDate from './toDate';
2022-10-20 11:42:49 +00:00
import toCurrency from './toCurrency';
2022-10-24 06:48:53 +00:00
import toPercentage from './toPercentage';
2022-03-24 15:49:33 +00:00
2022-10-17 14:23:19 +00:00
export {
2022-03-24 15:49:33 +00:00
toLowerCase,
2022-10-20 11:42:49 +00:00
toDate,
toCurrency,
2022-10-24 06:48:53 +00:00
toPercentage,
2022-03-24 15:49:33 +00:00
};