salix-front/src/filters/index.js

8 lines
113 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-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-17 14:23:19 +00:00
toDate
2022-03-24 15:49:33 +00:00
};