Skip to content

Commit f369f56

Browse files
committedSep 14, 2019
chore: switch to date-fns
1 parent ca6e254 commit f369f56

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎src/helpers/formatDA.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import moment from 'moment';
1+
import { parse, format } from 'date-fns';
22

33
export default function formatDA(date, strFormat = 'MMM D, YYYY') {
44
if (!date) {
55
return;
66
}
77

8-
const dateAsMoment = moment(date, 'YYYYMMDD');
8+
const parsedDateTime = parse(date, 'YYYYMMDD');
99

10-
return dateAsMoment.format(strFormat);
10+
return format(parsedDateTime, strFormat);
1111
}

‎src/helpers/formatTM.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import moment from 'moment';
1+
import { parse, format } from 'date-fns';
22

33
export default function formatTM(time, format = 'HH:mm:ss') {
44
if (!time) {
@@ -12,7 +12,7 @@ export default function formatTM(time, format = 'HH:mm:ss') {
1212
// S SS SSS 0..999 Fractional seconds
1313
//
1414
// See MomentJS: http://momentjs.com/docs/#/parsing/string-format/
15-
const dateTime = moment(time, 'HHmmss.SSS');
15+
const parsedDateTime = parse(time, 'HHmmss.SSS');
1616

17-
return dateTime.format(format);
17+
return format(parsedDateTime, format);
1818
}

0 commit comments

Comments
 (0)
Please sign in to comment.