7631_testToMaster_2426 #480

Merged
alexm merged 390 commits from 7631_testToMaster_2426 into master 2024-06-25 06:40:05 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit f9fa68b0b1 - Show all commits

View File

@ -0,0 +1,6 @@
import toCurrency from './toCurrency';
export default function (value) {
if (value == null || value === '') return () => '-';
return toCurrency;
}

View File

@ -10,6 +10,7 @@ import toLowerCamel from './toLowerCamel';
import dashIfEmpty from './dashIfEmpty';
import dateRange from './dateRange';
import toHour from './toHour';
import dashOrCurrency from './dashOrCurrency';
export {
toLowerCase,
@ -17,6 +18,7 @@ export {
toDate,
toHour,
toDateString,
dashOrCurrency,
toDateHourMin,
toDateHourMinSec,
toRelativeDate,