salix-front/src/filters/index.js

20 lines
465 B
JavaScript

import toLowerCase from './toLowerCase';
import toDate from './toDate';
import toDateString from './toDateString';
import toDateHour from './toDateHour';
import toCurrency from './toCurrency';
import toPercentage from './toPercentage';
import toLowerCamel from './toLowerCamel';
import dashIfEmpty from './dashIfEmpty';
export {
toLowerCase,
toLowerCamel,
toDate,
toDateString,
toDateHour,
toCurrency,
toPercentage,
dashIfEmpty,
};